blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 7 332 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2 values | repo_name stringlengths 7 115 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 557 values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 5.85k 684M ⌀ | star_events_count int64 0 77.7k | fork_events_count int64 0 48k | gha_license_id stringclasses 17 values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 82 values | src_encoding stringclasses 28 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 2 classes | length_bytes int64 7 5.41M | extension stringclasses 11 values | content stringlengths 7 5.41M | authors listlengths 1 1 | author stringlengths 0 161 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
a85a589b452a3f2755d860b561353c54a96816bd | d39c2d41800a6bd519cf78b784bc68896555ff99 | /src/main/java/com/github/theronoliveira/apiRestCidades/staties/entities/State.java | de81cb2a46b53d51f8bc831340c125504076c9bc | [] | no_license | TheronOliveira/digitalInnovationOneQA | 860e5c4b27446f5386fb09074a1aa7975667d13f | 3678f6ef2a0b0aa9d714678157168767601e6c80 | refs/heads/master | 2023-08-28T01:55:01.367826 | 2021-11-03T14:09:58 | 2021-11-03T14:09:58 | 424,244,760 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,611 | java | package com.github.theronoliveira.apiRestCidades.staties.entities;
import com.github.theronoliveira.apiRestCidades.countries.entities.Country;
import com.vladmihalcea.hibernate.type.json.JsonBinaryType;
import java.util.List;
import javax.persistence.Basic;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.Table;
import org.hibernate.annotations.Type;
import org.hibernate.annotations.TypeDef;
import org.hibernate.annotations.TypeDefs;
@Entity(name = "State")
@Table(name = "estado")
@TypeDefs({
@TypeDef(name = "jsonb", typeClass = JsonBinaryType.class)
})
public class State {
@Id
private Long id;
@Column(name = "nome")
private String name;
private String uf;
private Integer ibge;
/* 1st
@Column(name = "pais")
private Integer countryId;*/
// 2nd - @ManyToOne
@ManyToOne
@JoinColumn(name = "pais", referencedColumnName = "id")
private Country country;
@Type(type = "jsonb")
@Basic(fetch = FetchType.LAZY)
@Column(name = "ddd", columnDefinition = "jsonb")
private List<Integer> ddd;
public State() {
}
public Long getId() {
return id;
}
public String getName() {
return name;
}
public String getUf() {
return uf;
}
public Integer getIbge() {
return ibge;
}
public List<Integer> getDdd() {
return ddd;
}
public Country getCountry() {
return country;
}
/*public Integer getCountryId() {
return countryId;
}*/
}
| [
"45536620+TheronOliveira@users.noreply.github.com"
] | 45536620+TheronOliveira@users.noreply.github.com |
09aa624b7fabd79399a26b7d1c998606d7384664 | 39b7e86a2b5a61a1f7befb47653f63f72e9e4092 | /src/main/java/com/alipay/api/response/KoubeiServindustryExerciseMemberDeleteResponse.java | 2d28b5ccf38a85a2fd897beb03560892d172a708 | [
"Apache-2.0"
] | permissive | slin1972/alipay-sdk-java-all | dbec0604c2d0b76d8a1ebf3fd8b64d4dd5d21708 | 63095792e900bbcc0e974fc242d69231ec73689a | refs/heads/master | 2020-08-12T14:18:07.203276 | 2019-10-13T09:00:11 | 2019-10-13T09:00:11 | 214,782,009 | 0 | 0 | Apache-2.0 | 2019-10-13T07:56:34 | 2019-10-13T07:56:34 | null | UTF-8 | Java | false | false | 395 | java | package com.alipay.api.response;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: koubei.servindustry.exercise.member.delete response.
*
* @author auto create
* @since 1.0, 2019-08-01 10:37:42
*/
public class KoubeiServindustryExerciseMemberDeleteResponse extends AlipayResponse {
private static final long serialVersionUID = 1526991411393243898L;
}
| [
"ben.zy@antfin.com"
] | ben.zy@antfin.com |
76dfd96ab3959148d1eff83098d1d5240c15da1c | 1249513b0d5c0b5bf99b620aa5461e73ee4df83f | /src/com/sutil/rango/MainActivity.java | 6b28e16c57eea78ac873a90ba8e0b5839fdba911 | [] | no_license | ElHacker/rango-android-app | c9d08caecaf6adae55c71ac484246d310593a804 | 8f0ce5c52ee0e8523854f87fe1dc68bf96a4252d | refs/heads/master | 2016-09-05T09:18:36.969764 | 2013-06-28T00:21:00 | 2013-06-28T00:21:00 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,753 | java | package com.sutil.rango;
import java.util.Arrays;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentTransaction;
import android.util.Log;
import android.view.View;
import com.facebook.Request;
import com.facebook.Response;
import com.facebook.Session;
import com.facebook.SessionState;
import com.facebook.UiLifecycleHelper;
import com.facebook.model.GraphUser;
import com.facebook.widget.LoginButton;
import com.google.analytics.tracking.android.EasyTracker;
import com.google.analytics.tracking.android.Tracker;
import com.sutil.rango.libs.RestClient;
public class MainActivity extends FragmentActivity {
private static final String TAG = "MainActivity";
private static final int SPLASH = 0;
private static final int FRAGMENT_COUNT = SPLASH +1;
private static Intent tabsScreen = null;
private boolean isResumed = false;
private Fragment[] fragments = new Fragment[FRAGMENT_COUNT];
private UiLifecycleHelper uiHelper;
private Session.StatusCallback callback =
new Session.StatusCallback() {
@Override
public void call(Session session,
SessionState state, Exception exception) {
onSessionStateChange(session, state, exception);
}
};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
uiHelper = new UiLifecycleHelper(this, callback);
uiHelper.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
FragmentManager fm = getSupportFragmentManager();
fragments[SPLASH] = fm.findFragmentById(R.id.splashFragment);
FragmentTransaction transaction = fm.beginTransaction();
for(int i = 0; i < fragments.length; i++) {
transaction.hide(fragments[i]);
}
transaction.commit();
// Set the facebook login permissions
LoginButton login_button = (LoginButton) findViewById(R.id.login_button);
login_button.setReadPermissions(Arrays.asList("email"));
// Starting a new intent for TabsActivity
tabsScreen = new Intent(getApplicationContext(), TabsActivity.class);
}
@Override
public void onStart() {
super.onStart();
// ... Rest of the onstart code
// Track analytics start of this activity
EasyTracker.getInstance().activityStart(this);
}
@Override
public void onResume() {
super.onResume();
uiHelper.onResume();
isResumed = true;
}
@Override
public void onPause() {
super.onPause();
uiHelper.onPause();
isResumed = false;
}
@Override
public void onStop() {
super.onStop();
// ... Rest of the onStrop code
// Stop the tracking of this activity
EasyTracker.getInstance().activityStop(this);
}
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
uiHelper.onActivityResult(requestCode, resultCode, data);
}
@Override
public void onDestroy() {
super.onDestroy();
uiHelper.onDestroy();
}
@Override
protected void onSaveInstanceState(Bundle outState) {
super.onSaveInstanceState(outState);
uiHelper.onSaveInstanceState(outState);
}
@Override
protected void onResumeFragments() {
super.onResumeFragments();
Session session = Session.getActiveSession();
SharedPreferences settings = getSharedPreferences("MyUserInfo", 0);
if (session != null && session.isOpened()) {
// if the session is already open,
// try to start the TabsScreen activity
onLogin();
boolean loggedIn = settings.getBoolean("logged_in", false);
if (loggedIn) {
// Start the tab screen activity
startActivity(tabsScreen);
}
} else {
// otherwise present the splash screen
// and ask the user to login.
showFragment(SPLASH, false);
changeUIWhenLogout();
}
}
private void showFragment(int fragmentIndex, boolean addToBackStack) {
FragmentManager fm = getSupportFragmentManager();
FragmentTransaction transaction = fm.beginTransaction();
for (int i = 0; i < fragments.length; i++) {
if (i == fragmentIndex) {
transaction.show(fragments[i]);
} else {
transaction.hide(fragments[i]);
}
}
if (addToBackStack) {
transaction.addToBackStack(null);
}
transaction.commit();
}
private void onSessionStateChange(Session session, SessionState state, Exception exception) {
// Only make changes if the activity is visible
if (isResumed) {
FragmentManager manager = getSupportFragmentManager();
// Get the number of entries in the back stack
int backStackSize = manager.getBackStackEntryCount();
// Clear the back stack
for (int i = 0; i < backStackSize; i++) {
manager.popBackStack();
}
if (state.isOpened()) {
// If the session state is open:
// Show the authenticated fragment
onLogin();
// Logged in
// Get my user information from facebook
makeFacebookMeRequest(session);
} else if (state.isClosed()) {
// If the session state is closed:
// Show the login fragment
changeUIWhenLogout();
showFragment(SPLASH, false);
}
}
}
// Call this method once logged in on facebook
private void onLogin() {
changeUIWhenLogin();
// Track the "login" event
Tracker myTracker = EasyTracker.getTracker();
myTracker.sendEvent("ui_action", "button_press", "login_button", null);
}
private void changeUIWhenLogin() {
findViewById(R.id.login_button).setVisibility(View.INVISIBLE);
findViewById(R.id.loginProgressBar).setVisibility(View.VISIBLE);
}
private void changeUIWhenLogout() {
findViewById(R.id.login_button).setVisibility(View.VISIBLE);
findViewById(R.id.loginProgressBar).setVisibility(View.INVISIBLE);
}
private void makeFacebookMeRequest(final Session session) {
// Make an API call to get user data and define a
// new callback to handle the response.
Request request = Request.newMeRequest(session,
new Request.GraphUserCallback() {
@Override
public void onCompleted(GraphUser user, Response response) {
// If the response is successful
if (session == Session.getActiveSession()) {
if (user != null) {
// Save my fb user information in shared preferences
SharedPreferences settings = getSharedPreferences("MyUserInfo", 0);
SharedPreferences.Editor editor = settings.edit();
editor.putBoolean("logged_in", true); // indicated that the user is already logged in
editor.putString("my_fb_id", user.getId());
editor.putString("my_fb_first_name", user.getFirstName());
editor.putString("my_fb_last_name", user.getLastName());
editor.commit();
// post a new user in rango
RestClient.post_user(user.getId(), (String) user.asMap().get("email"), user.getFirstName(), user.getLastName());
// Start the tab screen activity
startActivity(tabsScreen);
}
}
if (response.getError() != null) {
// Handle errors, will do so later.
}
}
});
request.executeAsync();
}
} | [
"pataslargas27@gmail.com"
] | pataslargas27@gmail.com |
34f799f59bb2ede53353afdc195624bac8077190 | d5398230de7067e5333f84cc717d6f82c4a4de85 | /src/main/java/com/yzchnb/dynamicbarvideogenerator/ContextStorage/ProcessorMap.java | c26df0b5007c51490b9ee8fd51d840b1f3e1e697 | [] | no_license | yzc1114/DynamicBarVideoGenerator | 5fe1addc2ee2e6426211308d5b00297693da06ca | f00fbd9d470ec79dde9dafda4de0c83906dca885 | refs/heads/master | 2022-03-28T19:34:00.462420 | 2020-01-07T08:29:51 | 2020-01-07T08:29:51 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 776 | java | package com.yzchnb.dynamicbarvideogenerator.ContextStorage;
import com.yzchnb.dynamicbarvideogenerator.Generator.CenterProcessor;
import java.util.concurrent.ConcurrentHashMap;
public class ProcessorMap {
private static ConcurrentHashMap<String, CenterProcessor> processors = new ConcurrentHashMap<>();
public static CenterProcessor getCenterProcessor(String key){
return processors.get(key);
}
public static void putCenterProcessor(String key, CenterProcessor centerProcessor){
processors.put(key, centerProcessor);
}
public static void removeCenterProcessor(String key){
processors.remove(key);
}
public static boolean containsCenterProcessorKey(String key){
return processors.containsKey(key);
}
}
| [
"1021777674@qq.com"
] | 1021777674@qq.com |
a10762b06bc993e34954053c7589a691c6ed2edd | 1adbebd12e8eb6dabe23eb13c4324aa48e70f429 | /app/src/test/java/com/jeffryraymond/rememberYou/ExampleUnitTest.java | d4e0b74c9c7b87d233ca7c239487175f3ce2049a | [] | no_license | jeffryraymond/Remember-You | 0e4e10dc4fc02b5fe7676a4017fa40c10684085b | fbd1ebd460c06fd81c06187ad1ac133a9c973e59 | refs/heads/master | 2020-04-07T15:03:53.557150 | 2018-11-21T01:31:56 | 2018-11-21T01:31:56 | 158,471,788 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 407 | java | package com.jeffryraymond.rememberYou;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() throws Exception {
assertEquals(4, 2 + 2);
}
} | [
"jeffryraymond96@gmail.com"
] | jeffryraymond96@gmail.com |
a24d4c4714b8cd0af5f597bae5ed53dfb2ac189c | 4c70265b3d36bea70adf2498db0eef182d328091 | /app/src/test/java/com/comment/app/gitdemomo/ExampleUnitTest.java | cebdefd6024ccb28bdc5dbb8bbd22aca011bc75f | [] | no_license | Feboam/Test | ca6b1579ff14e436dc3216bb8eda93e517b87a61 | d7ded6c0071ec4c39a170cac743f63e1c3c839bc | refs/heads/master | 2020-06-10T04:19:38.777408 | 2018-08-05T16:56:23 | 2018-08-05T16:56:23 | 76,087,961 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 386 | java | package com.comment.app.gitdemomo;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() {
assertEquals(4, 2 + 2);
}
} | [
"feboam@163.com"
] | feboam@163.com |
dcd2b8d6ba66d516e2cae923e99f2ed7ad4888aa | 4a2babb1bbfbff9a9937fe5e2942c421b876e914 | /hw11-WebServer/src/main/java/hw11WebServer/api/Identifiable.java | bfe4f1f13f718b20b2ed2a9695f48f26a0575c84 | [] | no_license | eovingav/otus-homework-java | 23a3ba1f6e842cf2f3a9a2dd5ccfa51b189abd67 | 58e7675b892d509b15c7daeb857fdeffdd6a7122 | refs/heads/master | 2022-07-23T20:54:12.289423 | 2020-04-22T17:30:29 | 2020-04-22T17:30:29 | 194,814,707 | 0 | 1 | null | 2022-07-07T22:11:01 | 2019-07-02T07:47:24 | Java | UTF-8 | Java | false | false | 118 | java | package hw11WebServer.api;
import java.util.List;
public interface Identifiable {
public long getID();
}
| [
"a.gnilomedova@centrofinans.ru"
] | a.gnilomedova@centrofinans.ru |
6337b573212537804f2ab177158efde7def06122 | 3ef55e152decb43bdd90e3de821ffea1a2ec8f75 | /large/module1507_public/tests/unittests/src/java/module1507_public_tests_unittests/a/Foo3.java | 12ec138ff4903886a63e36ceee9896364d860a57 | [
"BSD-3-Clause"
] | permissive | salesforce/bazel-ls-demo-project | 5cc6ef749d65d6626080f3a94239b6a509ef145a | 948ed278f87338edd7e40af68b8690ae4f73ebf0 | refs/heads/master | 2023-06-24T08:06:06.084651 | 2023-03-14T11:54:29 | 2023-03-14T11:54:29 | 241,489,944 | 0 | 5 | BSD-3-Clause | 2023-03-27T11:28:14 | 2020-02-18T23:30:47 | Java | UTF-8 | Java | false | false | 1,728 | java | package module1507_public_tests_unittests.a;
import java.sql.*;
import java.util.logging.*;
import java.util.zip.*;
/**
* Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut
* labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.
* Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
*
* @see javax.management.Attribute
* @see javax.naming.directory.DirContext
* @see javax.net.ssl.ExtendedSSLSession
*/
@SuppressWarnings("all")
public abstract class Foo3<R> extends module1507_public_tests_unittests.a.Foo2<R> implements module1507_public_tests_unittests.a.IFoo3<R> {
javax.rmi.ssl.SslRMIClientSocketFactory f0 = null;
java.awt.datatransfer.DataFlavor f1 = null;
java.beans.beancontext.BeanContext f2 = null;
public R element;
public static Foo3 instance;
public static Foo3 getInstance() {
return instance;
}
public static <T> T create(java.util.List<T> input) {
return module1507_public_tests_unittests.a.Foo2.create(input);
}
public String getName() {
return module1507_public_tests_unittests.a.Foo2.getInstance().getName();
}
public void setName(String string) {
module1507_public_tests_unittests.a.Foo2.getInstance().setName(getName());
return;
}
public R get() {
return (R)module1507_public_tests_unittests.a.Foo2.getInstance().get();
}
public void set(Object element) {
this.element = (R)element;
module1507_public_tests_unittests.a.Foo2.getInstance().set(this.element);
}
public R call() throws Exception {
return (R)module1507_public_tests_unittests.a.Foo2.getInstance().call();
}
}
| [
"gwagenknecht@salesforce.com"
] | gwagenknecht@salesforce.com |
63b8692eeb5ce8fe9c9f757a19fc0f72de5ec3d8 | e27f60e63ba3570e29a7980d799d2148cad242c3 | /legionRPGTextual/app/src/main/java/com/example/legionrpgtextual/ActivityPag2.java | 442e4a9bb8d54ccd8e4406d8b986993405c9484b | [] | no_license | kalebBuenoLopes/testeqi | c1c29951cb6525359144541b148d47990a6a3a6c | 1d3d13ce32cee0e504fdaf7d475fe5f1cca87205 | refs/heads/master | 2022-11-30T15:32:20.529459 | 2020-08-12T13:18:01 | 2020-08-12T13:18:01 | 287,010,064 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 881 | java | package com.example.legionrpgtextual;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class ActivityPag2 extends AppCompatActivity {
Button btnProximo2;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_pag2);
getSupportActionBar().hide();
btnProximo2 = findViewById(R.id.btnProximo2);
btnProximo2.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
pagina3();
}
});
}
private void pagina3(){
Intent janela = new Intent(this, ActivityPag3.class);
startActivity(janela);
finish();
}
} | [
"kalebboeno@gmail.com"
] | kalebboeno@gmail.com |
cc1bef7e374897eef9621d8b52b8996aea8e20e0 | dff9477c5fcad0f2ccf1716c850c2f71e13c6787 | /gmall-mbg/src/main/java/com/dubbo/gmall/sms/mapper/HomeAdvertiseMapper.java | fd9b4ec2b771559515b107da5ac751190f95d97c | [] | no_license | Tzenghao/gmall-parent | 54ca4a0b2526f11d056c26552b5b040b796d8b20 | dd596c7b22796ea01a0898c436094bb2ef8e06f2 | refs/heads/branch | 2022-06-22T14:54:12.004045 | 2020-01-21T08:00:47 | 2020-01-21T08:00:47 | 232,714,421 | 0 | 0 | null | 2022-06-21T02:36:42 | 2020-01-09T03:31:38 | Java | UTF-8 | Java | false | false | 319 | java | package com.dubbo.gmall.sms.mapper;
import com.dubbo.gmall.sms.entity.HomeAdvertise;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* <p>
* 首页轮播广告表 Mapper 接口
* </p>
*
* @author Zh
* @since 2020-01-09
*/
public interface HomeAdvertiseMapper extends BaseMapper<HomeAdvertise> {
}
| [
"zenghao@sinosoft.com.cn"
] | zenghao@sinosoft.com.cn |
fa8dabb92200b43766b893c180ff2ea91eb7ea78 | f22f3e235599bc9da89ce6b078cb258a2294d841 | /src/com/tarnet/managers/EntityManager.java | 404e3c7228799a720df47c0ce88607875cc482a6 | [] | no_license | msguneyy/tarnet-java-I | 09043a1615b2b5bd20a7309312e93a754749bd46 | 70d393bc25288d09ecc81cc0696ee2b0e220d730 | refs/heads/master | 2022-11-28T05:49:23.074175 | 2020-08-06T08:20:38 | 2020-08-06T08:20:38 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 787 | java | package com.tarnet.managers;
import com.tarnet.interfaces.IEntity;
import java.util.List;
import java.util.function.Function;
import java.util.function.Supplier;
import java.util.stream.Collectors;
public class EntityManager<T extends IEntity> { // TEMPLATE CLASS && TEMPLATE FUNCTIONS
private List<T> dataList;
public EntityManager(List<T> dataList) {
this.dataList = dataList;
}
public Supplier<List<T>> findAll = () -> this.dataList;
public List<T> findById(int id) {
return dataList.parallelStream().filter(e -> e.getId() == id).collect(Collectors.toList());
}
public Function<String, List<T>> findByKeyword = (String keyword) -> dataList.parallelStream().filter(e -> e.toString().contains(keyword)).collect(Collectors.toList());
}
| [
"mgani.tombalak@yahoo.com"
] | mgani.tombalak@yahoo.com |
8fcbc6bcd5e7cde08cf6398465546933f65b23e5 | 3fc46cd3b8d8b769f52043ceabf4abc50db416e4 | /app/src/androidTest/java/com/sujon/admob/ExampleInstrumentedTest.java | 51722ef85d73dce5d8bfaac6c0c42b1c4118274e | [
"MIT"
] | permissive | Biangkerok32/Admob | 9e495bc2aceb7817428413b882ed7a6a381aa5d9 | 8ddbedfec78db2800748a73c1febddc89b5ed206 | refs/heads/main | 2023-05-01T07:16:46.362789 | 2021-05-17T14:42:16 | 2021-05-17T14:42:16 | 368,214,325 | 0 | 0 | MIT | 2021-05-17T14:24:52 | 2021-05-17T14:24:51 | null | UTF-8 | Java | false | false | 743 | java | package com.sujon.admob;
import android.content.Context;
import androidx.test.platform.app.InstrumentationRegistry;
import androidx.test.ext.junit.runners.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumented test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
assertEquals("com.sujon.admob", appContext.getPackageName());
}
} | [
"rasujon3@gmail.com"
] | rasujon3@gmail.com |
7ab7a1e88f75d461f9bdb3c8760e8524f6930d9b | c8c949b3710fbb4b983d03697ec9173a0ad3f79f | /src/HashTable/RemoveDuplicatesfromSortedListII.java | de54bbc4b3132d009a21ff97e7259a8908a629a3 | [] | no_license | mxx626/myleet | ae4409dec30d81eaaef26518cdf52a75fd3810bc | 5da424b2f09342947ba6a9fffb1cca31b7101cf0 | refs/heads/master | 2020-03-22T15:11:07.145406 | 2018-07-09T05:12:28 | 2018-07-09T05:12:28 | 140,234,151 | 2 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,313 | java | package HashTable;
// TAG: LinkedList
public class RemoveDuplicatesfromSortedListII {
/**
* Given a sorted linked list, delete all nodes that have
* duplicate numbers, leaving only distinct numbers from the original list.
Example 1:
Input: 1->2->3->3->4->4->5
Output: 1->2->5
Example 2:
Input: 1->1->1->2->3
Output: 2->3
* @param head
* @return
*/
public ListNode deleteDuplicates(ListNode head) {
if (head==null || head.next==null) return head;
ListNode dummy = new ListNode(0);
dummy.next=head;
ListNode pre = dummy;
ListNode ptr = head;
boolean flag = false;
while (ptr!=null && ptr.next!=null){
if (ptr.val==ptr.next.val){
ptr=ptr.next;
flag=true;
}
else {
if (flag){
pre.next=ptr.next;
flag=false;
}
else {
pre=ptr;
}
ptr=ptr.next;
}
}
if (flag) pre.next=null;
return dummy.next;
}
class ListNode {
int val;
ListNode next;
ListNode(int x) { val = x; }
}
}
| [
"mxx626@outlook.com"
] | mxx626@outlook.com |
37667cf3c84cfc69ecd42c54b4626a8e87fce901 | 5947cfe58348f6cdf30588b8e411ebf55ec50e05 | /anjbo-credit3-iface-order/.svn/pristine/01/010c538decbdc282173ae61faeffd605d967440e.svn-base | 801afd00544f98a7c8917d1a2372bd43e09836a0 | [] | no_license | superJack2222/work-credit | 197de8c94df3691f0d1e249ea431c526ca6f3867 | 4d6dfdabe92d8fee2b49de96fc08e281763a31ba | refs/heads/master | 2023-04-28T05:09:40.511601 | 2020-07-21T00:43:07 | 2020-07-21T00:43:07 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,341 | /*
*Project: ANJBO Generator
****************************************************************
* 版权所有@2018 ANJBO.COM 保留所有权利.
***************************************************************/
package com.anjbo.controller.finance;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import com.anjbo.bean.finance.StatementDto;
import com.anjbo.common.RespDataObject;
import com.anjbo.common.RespStatus;
/**
*
* @Author ANJBO Generator
* @Date 2018-07-03 18:34:35
* @version 1.0
*/
@Api(value = "财务制单相关")
@RequestMapping("/statement/v")
public interface IStatementController {
@ApiOperation(value = "财务制单提交", httpMethod = "POST" ,response = RespStatus.class)
@RequestMapping(value = "processSubmit", method= {RequestMethod.POST})
public abstract RespStatus processSubmit(@RequestBody StatementDto dto);
@ApiOperation(value = "财务制单详情", httpMethod = "POST" ,response = StatementDto.class)
@RequestMapping(value = "processDetails", method= {RequestMethod.POST})
public abstract RespDataObject<StatementDto> processDetails(@RequestBody StatementDto dto);
} | [
"395859675@qq.com"
] | 395859675@qq.com | |
768dacbba81f1dae5edccbf9dcb7a0ac52bd7380 | c83c5614df37f25a95cfdd942a5229c67df320bb | /Adimed/src/main/java/com/directions/sample/volley/JsonParser.java | d87446f3484c89cd7f06bc03a4aa1499d5eb8c3a | [
"MIT",
"Apache-2.0"
] | permissive | hubertSwiecioch/ADIMED | 9cb2555fbb57c9939c2694ccc7cc8d3c6ba5dc70 | 6477bace559c387338d824af199d444ef3057468 | refs/heads/master | 2021-01-10T10:08:09.754321 | 2016-03-13T22:52:00 | 2016-03-13T22:52:00 | 49,591,608 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,397 | java | package com.directions.sample.volley;
import android.util.Log;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
/**
* Created by user on 2016-01-15.
*/
public class JsonParser {
private String distance, duration, distanceText, durationText, destinationAddres, originAddress, status;
public static final String TAG = "JsonParser";
public static RouteResult parseResponse(String response){
RouteResult routeResult = new RouteResult();
if (response != null) {
try {
JSONObject jObject = new JSONObject(response);
Log.d(TAG, "response " + response);
routeResult.setStatus(jObject.getString("status"));
// checking the status
if (jObject.getString("status").equals("OK")) {
routeResult.setDestinationAddresses(jObject.getString("destination_addresses"));
routeResult.setOriginAddresses(jObject.getString("origin_addresses"));
// Parsing the value from row array
JSONArray jaArray = jObject.getJSONArray("rows");
for (int i = 0; i < jaArray.length(); i++) {
JSONObject jobj = jaArray.getJSONObject(i);
JSONArray jaArray2 = jobj.getJSONArray("elements");
for (int j = 0; i < jaArray2.length(); j++) {
JSONObject jobj1 = jaArray2.getJSONObject(j);
JSONObject jobj_distance = jobj1
.getJSONObject("distance");
JSONObject jobj_duration = jobj1
.getJSONObject("duration");
routeResult.setDistanceValue(jobj_distance.getString("value"));
routeResult.setDurationValue(jobj_duration.getString("value"));
routeResult.setDistanceText(jobj_distance.getString("text"));
routeResult.setDurationText(jobj_duration.getString("text"));
}
}
}
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
return routeResult;
}
}
| [
"hswiecioch@hotmail.com"
] | hswiecioch@hotmail.com |
7055e0f9798d6a187489062ca3a3b208e0ed9369 | ede677c561b3bfb12bdf4db0eb89cff667f5531f | /src/test/java/com/automation/utilities/Driver.java | dd88794520078a9805d23ca79bd1e425b62c8dcd | [] | no_license | Aierken712/FallSelenium2019 | 4128b5fc893341ba961b8a5064c3c1247a45790e | 89b348ebadba996a70e0c7579671bd4634ab5e3f | refs/heads/master | 2023-05-11T17:27:12.393285 | 2020-04-15T02:14:16 | 2020-04-15T02:14:16 | 244,194,242 | 0 | 0 | null | 2023-05-09T18:22:47 | 2020-03-01T17:36:46 | Java | UTF-8 | Java | false | false | 1,994 | java | package com.automation.utilities;
import io.github.bonigarcia.wdm.WebDriverManager;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.chrome.ChromeOptions;
import org.openqa.selenium.firefox.FirefoxDriver;
public class Driver {
//same for everyone
private static WebDriver driver;
//so no one can create object of Driver class
//everyone should call static getter method instead
private Driver() {
}
public static WebDriver getDriver() {
//if webdriver object doesn't exist
//create it
if (driver == null) {
//specify browser type in configuration.properties file
String browser = ConfigurationReader.getProperty("browser").toLowerCase();
switch (browser) {
case "chrome":
WebDriverManager.chromedriver().version("79").setup();
ChromeOptions chromeOptions = new ChromeOptions();
chromeOptions.addArguments("--start-maximized");
driver = new ChromeDriver(chromeOptions);
break;
case "chromeheadless":
//to run chrome without interface (headless mode)
WebDriverManager.chromedriver().version("79").setup();
ChromeOptions options = new ChromeOptions();
options.setHeadless(true);
driver = new ChromeDriver(options);
break;
case "firefox":
WebDriverManager.firefoxdriver().setup();
driver = new FirefoxDriver();
break;
default:
throw new RuntimeException("Wrong browser name!");
}
}
return driver;
}
public static void closeDriver() {
if (driver != null) {
driver.quit();
driver = null;
}
}
}
| [
"ershad0419@gmail.com"
] | ershad0419@gmail.com |
27cf35eadb5f9ae7e0003b7132e4132c5e4c78f3 | 0591f3eae69042a166ac6789df6e1a23f4f023b2 | /handler-ssl-ocsp/src/main/java/io/netty/handler/ssl/ocsp/IoTransport.java | 85ded8a3a3d5f5b28508e8ec085a70c980e12973 | [
"Apache-2.0",
"LicenseRef-scancode-public-domain",
"CC-PDDC",
"BSD-3-Clause",
"APSL-2.0",
"MIT"
] | permissive | netty/netty | 646740a2625e2849eb642183d8adbaab427e9fbb | c91d5a2608a8461377d004d5fe1bd2572533083d | refs/heads/4.1 | 2023-09-04T05:06:31.688291 | 2023-09-01T07:47:58 | 2023-09-01T07:47:58 | 1,064,563 | 31,408 | 16,820 | Apache-2.0 | 2023-09-12T23:37:43 | 2010-11-09T09:22:21 | Java | UTF-8 | Java | false | false | 3,404 | java | /*
* Copyright 2022 The Netty Project
*
* The Netty Project licenses this file to you under the Apache License,
* version 2.0 (the "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at:
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/
package io.netty.handler.ssl.ocsp;
import io.netty.channel.ChannelFactory;
import io.netty.channel.EventLoop;
import io.netty.channel.nio.NioEventLoop;
import io.netty.channel.nio.NioEventLoopGroup;
import io.netty.channel.socket.DatagramChannel;
import io.netty.channel.socket.SocketChannel;
import io.netty.channel.socket.nio.NioDatagramChannel;
import io.netty.channel.socket.nio.NioSocketChannel;
import static io.netty.util.internal.ObjectUtil.checkNotNull;
/**
* {@link IoTransport} holds {@link EventLoop}, {@link SocketChannel}
* and {@link DatagramChannel} for DNS I/O.
*/
public final class IoTransport {
private final EventLoop eventLoop;
private final ChannelFactory<SocketChannel> socketChannel;
private final ChannelFactory<DatagramChannel> datagramChannel;
/**
* Default {@link IoTransport} which uses {@link NioEventLoop}, {@link NioSocketChannel}
* and {@link NioDatagramChannel}.
*/
public static final IoTransport DEFAULT = new IoTransport(new NioEventLoopGroup(1).next(),
new ChannelFactory<SocketChannel>() {
@Override
public SocketChannel newChannel() {
return new NioSocketChannel();
}
},
new ChannelFactory<DatagramChannel>() {
@Override
public DatagramChannel newChannel() {
return new NioDatagramChannel();
}
});
/**
* Create a new {@link IoTransport} instance
*
* @param eventLoop {@link EventLoop} to use for I/O
* @param socketChannel {@link SocketChannel} for TCP DNS lookup and OCSP query
* @param datagramChannel {@link DatagramChannel} for UDP DNS lookup
* @return {@link NullPointerException} if any parameter is {@code null}
*/
public static IoTransport create(EventLoop eventLoop, ChannelFactory<SocketChannel> socketChannel,
ChannelFactory<DatagramChannel> datagramChannel) {
return new IoTransport(eventLoop, socketChannel, datagramChannel);
}
private IoTransport(EventLoop eventLoop, ChannelFactory<SocketChannel> socketChannel,
ChannelFactory<DatagramChannel> datagramChannel) {
this.eventLoop = checkNotNull(eventLoop, "EventLoop");
this.socketChannel = checkNotNull(socketChannel, "SocketChannel");
this.datagramChannel = checkNotNull(datagramChannel, "DatagramChannel");
}
public EventLoop eventLoop() {
return eventLoop;
}
public ChannelFactory<SocketChannel> socketChannel() {
return socketChannel;
}
public ChannelFactory<DatagramChannel> datagramChannel() {
return datagramChannel;
}
}
| [
"noreply@github.com"
] | noreply@github.com |
b157cf70b3dfd394ae962d94a6432ad7586e5880 | fe5d8f6527539789c65a55be4a90e99fd8e73022 | /app/src/test/java/com/app/atherion/svatkyv2/ExampleUnitTest.java | f94c3beb731566e27f7012bd4f525f84c8b2f691 | [] | no_license | Kredriel/SvatkyV2 | aaedfc671a5b66f6c0764853074c60f9e36a977b | a5438fc4c98a2b2d36f91e5108dd4cc14ed0f0ea | refs/heads/master | 2020-08-30T12:51:02.810979 | 2016-09-02T18:35:41 | 2016-09-02T18:35:41 | 67,246,228 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 403 | java | package com.app.atherion.svatkyv2;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() throws Exception {
assertEquals(4, 2 + 2);
}
} | [
"lukyy96@gmail.com"
] | lukyy96@gmail.com |
e3d36e4c5ffe69bae93f7a870a4f885c60dc37e1 | 8f2ce5c10ec8a65374ccb0e381d9afb8b31f1c97 | /Homework Assignments/src/Homework_5/OOP_Debugging/BankManagement.java | edd649b2008c80c25c69b8927df15c726f0e64c2 | [] | no_license | RAAngelov/swift | b4d0df67cf79d5ae43d3e06939e5216121eca966 | 6c97df7dafe3543db1fcb69e1128c0f6dcad7f0f | refs/heads/master | 2021-06-16T00:35:02.638615 | 2017-04-02T11:23:11 | 2017-04-02T11:23:11 | 82,418,903 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,432 | java | package Homework_5.OOP_Debugging;
import java.util.Scanner;
public class BankManagement {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String str;
Bank bank = new Bank();
while (!(str = sc.nextLine()).equalsIgnoreCase("END")) {
String arr[] = str.split(" ", 5);
if(arr[0].equals("OPEN")) {
System.out.print("OPEN ");
System.out.println(bank.openAccount(arr[1],arr[2],arr[3],arr[4])
? "success" : "fail");
} else if (arr[0].equals("CLOSE")) {
System.out.print("CLOSE ");
System.out.println(bank.closeAccount(arr[1],arr[2])
? "success" : "fail");
} else if (arr[0].equals("DEPOSIT")) {
System.out.print("DEPOSIT ");
System.out.println(bank.deposit(arr[1],Double.parseDouble(arr[2]))
? "success"
: "fail");
} else if (arr[0].equals("TRANSFER")) {
System.out.print("TRANSFER ");
System.out.println(bank.transfer(arr[1],arr[2],Double.parseDouble(arr[3]),arr[4])
? "success"
: "fail");
} else if (arr[0].equals("WITHDRAW")) {
System.out.print("WITHDRAW ");
System.out.println(bank.withdraw(arr[1],arr[2],Double.parseDouble(arr[3]))
? "success"
: "fail");
}
}
System.out.println(bank.getAssets());
bank.printBankAccounts();
}
}
| [
"tau@DESKTOP-Q4DDUAT"
] | tau@DESKTOP-Q4DDUAT |
def165313df89f16f80ca59bbacc277e768f618f | d0e3f3cc9196df449776c61bb806dc4a94c8bd90 | /src/classes/Hint.java | 2c0494fb1786d6269421961ad982bb28815e2490 | [
"MIT"
] | permissive | jakegoodman01/internet-investigators | 92edcee2a0d82b1ba819b600fec88a03d35783fa | d6cc33e98357394e699f259b4e8aa767bd572f88 | refs/heads/master | 2020-03-17T18:36:59.291224 | 2018-06-14T13:05:23 | 2018-06-14T13:05:23 | 133,828,247 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,889 | java | package classes;
import javafx.geometry.Insets;
import javafx.geometry.Pos;
import javafx.scene.layout.StackPane;
import javafx.scene.paint.Color;
import javafx.scene.shape.Rectangle;
import javafx.scene.text.Font;
import javafx.scene.text.Text;
/**
* @author Nathan Henry and Jake Goodman
* @since 2018-05-28
* @version 2 (current version)
*
* Version 2:
* Author: Jake Goodman
* Date: 2018-06-06
* Description: Made the box and font larger so it catches the user's eye. We asked people to play the game, and
* they did not notice the brother's comments
* Time spent: 10 minutes
*
* Version 1:
* Author: Nathan Henry
* Date: 2018-05-28
* Description: Little box displays at the bottom displaying a hint from the older brother
* Time spent: 10 minutes
*/
public class Hint extends StackPane {
/**
* Constructor for Hint
* window displays with a comment from brother when node are clicked in a profile class
* @param hint content of the hint
*/
public Hint(String hint) {
// call to default parent constructor
super();
this.setAlignment(Pos.BOTTOM_LEFT);
this.setPadding(new Insets(0, 0, 20, 20));
StackPane hintPane = new StackPane();
hintPane.setMaxHeight(240);
hintPane.setMaxWidth(480);
hintPane.setAlignment(Pos.TOP_LEFT);
Rectangle box = new Rectangle();
box.setHeight(160);
box.setWidth(400);
box.setFill(Color.WHITE);
box.setStroke(Color.BLACK);
hintPane.getChildren().add(box);
this.getChildren().add(hintPane);
Text t = new Text("Brother: " + hint);
StackPane.setMargin(t, new Insets(10, 10, 10, 10));
t.setFont(new Font(24));
t.setWrappingWidth(380);
hintPane.getChildren().add(t);
}
}
| [
"jakeg135@gmail.com"
] | jakeg135@gmail.com |
ad6769f92b85ac0c9b3707f7e73549db7453900f | 1a2c028af27e482308ef0569376702c33cf22c57 | /java/LISTA1_INTRODUCAO_JAVA/src/Exercicio6.java | e3d859d5c091909eeab3a1962409b36a5c7ce215 | [] | no_license | andcoelho/turma30java | 754a44abfea511d2c69a0264440da536417938bf | 5089f9ed0b2bd982e343c77f595dd2bdb8131d44 | refs/heads/main | 2023-08-16T03:07:03.401387 | 2021-09-07T16:59:42 | 2021-09-07T16:59:42 | 388,225,907 | 0 | 1 | null | null | null | null | ISO-8859-1 | Java | false | false | 932 | java | import java.util.Scanner;
/*
* 6. Construa um programa em c que, tendo como dados de entrada dois pontos
* quaisquer no plano, P(x1, y1) e P(x2, y2), escreva a distância entre eles. A fórmula
* que efetua tal cálculo é:
* d = raizquadrada ( (X2 - X1)^2 + (Y2 - Y1)^2 )
*/
public class Exercicio6 {
public static void main(String[] args) {
Scanner leia = new Scanner(System.in);
double x1, x2, y1, y2, quadradoX, quadradoY, d;
System.out.println("Digite o valor de X1: ");
x1 = leia.nextDouble();
System.out.println("Digite o valor de X2: ");
x2 = leia.nextDouble();
System.out.println("Digite o valor de Y1: ");
y1 = leia.nextDouble();
System.out.println("Digite o valor de Y2: ");
y2 = leia.nextDouble();
quadradoX = Math.pow((x2 - x1), 2);
quadradoY = Math.pow((y2 - y1), 2);
d = Math.sqrt(quadradoX + quadradoY);
System.out.printf("O valor de D é: %.2f", d);
}
}
| [
"andcoelho97@gmail.com"
] | andcoelho97@gmail.com |
dc09d63222d74c3f41a6063a18a9c5cb7edc810e | 5b8a2f86f2260253f8da300d36027ee12bdbf746 | /src/main/java/br/com/fiap/challenge/service/AuthenticatioService.java | a9274731a6dee244343b8fce3bd05f6c5aa06146 | [] | no_license | vinnirx/Sprint_04_Digital | 0aa0db1427b4bbc785e71a7a4efff5b33afba0b4 | 3ee5745ed84b0d45303c102818637b0b09d609d1 | refs/heads/main | 2023-08-25T14:40:18.295599 | 2021-10-24T21:18:26 | 2021-10-24T21:18:26 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,118 | java | package br.com.fiap.challenge.service;
import java.util.Optional;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.core.userdetails.UserDetails;
import org.springframework.security.core.userdetails.UserDetailsService;
import org.springframework.security.core.userdetails.UsernameNotFoundException;
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
import org.springframework.security.crypto.password.PasswordEncoder;
import org.springframework.stereotype.Service;
import br.com.fiap.challenge.model.User;
import br.com.fiap.challenge.repository.UserRepository;
@Service
public class AuthenticatioService implements UserDetailsService {
@Autowired
private UserRepository repository;
@Override
public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException {
Optional<User> user = repository.findByEmail(username);
if (user.isEmpty()) throw new UsernameNotFoundException("user not found");
return user.get();
}
public PasswordEncoder getPasswordEncoder() {
return new BCryptPasswordEncoder();
}
}
| [
"vinnirx@gmail.com"
] | vinnirx@gmail.com |
b5fedb68f01dceba8605603ec3a04270e6adce9c | c50a5db24f618a818027650dff7d4ee0d77fd412 | /app/src/main/java/com/avanipatel9/capstone_teampurple_bonvoyage/ImagePicker.java | 3c928571bc07f2414719f5c5abb261ce1e504057 | [] | no_license | avanipatel9/Capstone_teamPurple_bonVoyage | 59d073bb707475726b75c4d7af9bc5d5588f095c | 963c965c285ac2df8a6be687eba42287499fdd39 | refs/heads/master | 2022-12-05T11:24:14.140927 | 2020-08-28T15:18:00 | 2020-08-28T15:18:00 | 287,656,469 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,792 | java | package com.avanipatel9.capstone_teampurple_bonvoyage;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.content.pm.ResolveInfo;
import android.content.res.AssetFileDescriptor;
import android.database.Cursor;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Matrix;
import android.media.ExifInterface;
import android.net.Uri;
import android.os.Environment;
import android.provider.MediaStore;
import android.util.Log;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
public class ImagePicker {
private static final int DEFAULT_MIN_WIDTH_QUALITY = 400;
private static final String TAG = "ImagePicker";
private static final String TEMP_IMAGE_NAME = "tempImage";
private static String mCurrentPhotoPath;
public static int minWidthQuality = DEFAULT_MIN_WIDTH_QUALITY;
private static Uri mediaUri;
static File file;
public static Intent getPickImageIntent(Context context) throws IOException {
mediaUri = null;
file = null;
Intent chooserIntent = null;
List<Intent> intentList = new ArrayList<>();
Intent pickIntent = new Intent(Intent.ACTION_PICK, MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
return pickIntent;
}
private static File createImageFile(Context context) throws IOException {
String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date());
String imageFileName = "JPEG_" + timeStamp + "_";
File storageDir = context.getExternalFilesDir(Environment.DIRECTORY_PICTURES);
File image = File.createTempFile(
imageFileName,
".jpg",
storageDir
);
mCurrentPhotoPath = "file:" + image.getAbsolutePath();
return image;
}
static String imageFilePath;
private static List<Intent> addIntentsToList(Context context, List<Intent> list, Intent intent) {
List<ResolveInfo> resInfo = context.getPackageManager().queryIntentActivities(intent, 0);
for (ResolveInfo resolveInfo : resInfo) {
String packageName = resolveInfo.activityInfo.packageName;
Intent targetedIntent = new Intent(intent);
targetedIntent.setPackage(packageName);
list.add(targetedIntent);
Log.d(TAG, "Intent: " + intent.getAction() + " package: " + packageName);
}
return list;
}
public static Bitmap getImageFromResult(Context context, int resultCode,
Intent imageReturnedIntent) {
Log.d(TAG, "getImageFromResult, resultCode: " + resultCode);
Bitmap bm = null;
File imageFile = getTempFile(context);
if (resultCode == Activity.RESULT_OK) {
Uri selectedImage;
boolean isCamera = (imageReturnedIntent == null ||
imageReturnedIntent.getData() == null ||
imageReturnedIntent.getData().toString().contains(imageFile.toString()));
if (isCamera) { /** CAMERA **/
selectedImage = Uri.fromFile(imageFile);
} else { /** ALBUM **/
selectedImage = imageReturnedIntent.getData();
}
Log.d(TAG, "selectedImage: " + selectedImage);
bm = getImageResized(context, selectedImage);
int rotation = getRotation(context, selectedImage, isCamera);
bm = rotate(bm, rotation);
}
return bm;
}
private static File getTempFile(Context context) {
File imageFile = new File(context.getExternalCacheDir(), TEMP_IMAGE_NAME);
imageFile.getParentFile().mkdirs();
return imageFile;
}
private static Bitmap decodeBitmap(Context context, Uri theUri, int sampleSize) {
BitmapFactory.Options options = new BitmapFactory.Options();
options.inSampleSize = sampleSize;
AssetFileDescriptor fileDescriptor = null;
try {
fileDescriptor = context.getContentResolver().openAssetFileDescriptor(theUri, "r");
} catch (FileNotFoundException e) {
e.printStackTrace();
}
Bitmap actuallyUsableBitmap = BitmapFactory.decodeFileDescriptor(
fileDescriptor.getFileDescriptor(), null, options);
Log.d(TAG, options.inSampleSize + " sample method bitmap ... " +
actuallyUsableBitmap.getWidth() + " " + actuallyUsableBitmap.getHeight());
return actuallyUsableBitmap;
}
private static Bitmap getImageResized(Context context, Uri selectedImage) {
Bitmap bm = null;
int[] sampleSizes = new int[]{5, 3, 2, 1};
int i = 0;
do {
bm = decodeBitmap(context, selectedImage, sampleSizes[i]);
Log.d(TAG, "resizer: new bitmap width = " + bm.getWidth());
i++;
} while (bm.getWidth() < minWidthQuality && i < sampleSizes.length);
return bm;
}
private static int getRotation(Context context, Uri imageUri, boolean isCamera) {
int rotation;
if (isCamera) {
rotation = getRotationFromCamera(context, imageUri);
} else {
rotation = getRotationFromGallery(context, imageUri);
}
Log.d(TAG, "Image rotation: " + rotation);
return rotation;
}
public static int getRotationFromCamera(Context context, Uri imageFile) {
int rotate = 0;
try {
context.getContentResolver().notifyChange(imageFile, null);
ExifInterface exif = new ExifInterface(imageFile.getPath());
int orientation = exif.getAttributeInt(
ExifInterface.TAG_ORIENTATION,
ExifInterface.ORIENTATION_NORMAL);
switch (orientation) {
case ExifInterface.ORIENTATION_ROTATE_270:
rotate = 270;
break;
case ExifInterface.ORIENTATION_ROTATE_180:
rotate = 180;
break;
case ExifInterface.ORIENTATION_ROTATE_90:
rotate = 90;
break;
}
} catch (Exception e) {
e.printStackTrace();
}
return rotate;
}
public static int getRotationFromGallery(Context context, Uri imageUri) {
int result = 0;
String[] columns = {MediaStore.Images.Media.ORIENTATION};
Cursor cursor = null;
try {
cursor = context.getContentResolver().query(imageUri, columns, null, null, null);
if (cursor != null && cursor.moveToFirst()) {
int orientationColumnIndex = cursor.getColumnIndex(columns[0]);
result = cursor.getInt(orientationColumnIndex);
}
} catch (Exception e) {
//Do nothing
} finally {
if (cursor != null) {
cursor.close();
}
}
return result;
}
private static Bitmap rotate(Bitmap bm, int rotation) {
if (rotation != 0) {
Matrix matrix = new Matrix();
matrix.postRotate(rotation);
Bitmap bmOut = Bitmap.createBitmap(bm, 0, 0, bm.getWidth(), bm.getHeight(), matrix, true);
return bmOut;
}
return bm;
}
public static Uri getImageUri() {
Log.e(TAG, "getImageUriFromBitmap: " + file.getAbsolutePath() + " -- " + mCurrentPhotoPath);
return Uri.parse(file.getAbsolutePath()) != null ? Uri.parse(file.getAbsolutePath()) :mediaUri ;
}
}
| [
"c0768448@mylambton.ca"
] | c0768448@mylambton.ca |
cfd600313137a8dff2b2922ff7254439c124cafa | f096aa4a00663a6744213c95bf2b229110d16b62 | /src/main/java/com/iyzico/challenge/service/PaymentServiceClients.java | a41859ba0625f68dc9e218c5bef1b1c295056cdf | [] | no_license | obterk/iyzico | 678514bf065b25f20162398ff23258c058da59ac | 2633ccf535bd2b48749beff5cb7f267814fcc1cc | refs/heads/master | 2023-02-15T17:34:15.954020 | 2021-01-14T14:21:13 | 2021-01-14T14:21:13 | 329,621,046 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 648 | java | package com.iyzico.challenge.service;
import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Service;
import java.math.BigDecimal;
import java.util.concurrent.CompletableFuture;
@Service
public class PaymentServiceClients {
private IyzicoPaymentService iyzicoPaymentService;
public PaymentServiceClients(IyzicoPaymentService iyzicoPaymentService) {
this.iyzicoPaymentService = iyzicoPaymentService;
}
@Async
public CompletableFuture<String> call(BigDecimal price) {
iyzicoPaymentService.pay(price);
return CompletableFuture.completedFuture("success");
}
}
| [
"tbd.eobut@softtech.com.tr"
] | tbd.eobut@softtech.com.tr |
f3a6378b1589cde31d8f22e03d2a2833aa49e38e | f8af02dd6d14287f6bfbb8725e3b11094261875b | /deps/src/main/java/com/newrelic/deps/ch/qos/logback/core/rolling/helper/MonoTypedConverter.java | 2b534099ad18862a7602f8a3a96cd45689090389 | [] | no_license | masonmei/mx | fca12bedf2c9fef30452a485b81e23d416a0b534 | 38e0909f9a1720f32d59af280d7fd9a591c45f6c | refs/heads/master | 2021-01-11T04:57:18.501563 | 2015-07-30T08:20:28 | 2015-07-30T08:20:31 | 39,553,289 | 2 | 3 | null | null | null | null | UTF-8 | Java | false | false | 739 | java | /**
* Logback: the reliable, generic, fast and flexible logging framework.
* Copyright (C) 1999-2011, QOS.ch. All rights reserved.
*
* This program and the accompanying materials are dual-licensed under
* either the terms of the Eclipse Public License v1.0 as published by
* the Eclipse Foundation
*
* or (per the licensee's choosing)
*
* under the terms of the GNU Lesser General Public License version 2.1
* as published by the Free Software Foundation.
*/
package com.newrelic.deps.ch.qos.logback.core.rolling.helper;
/**
* Converters which can deal only with one type should implement this interface.
*
* @author Ceki G&ulcu;lcü
*
*/
public interface MonoTypedConverter {
boolean isApplicable(Object o);
}
| [
"dongxu.m@gmail.com"
] | dongxu.m@gmail.com |
caa0455c10dba6fcaf9e182e685457cfc4841c82 | c50790075c4e87f398f090980e7230f8f73edf7c | /src/python/Code.java | 2969a2853bdd8d581ef257291e2e5dfedcdcbd97 | [] | no_license | strategist922/hive-tools-dev | d20527b0566045c383c54c6c1b3dbb1521c5ee96 | 07ca266ba24a11b3b884750d41956845397ccb08 | refs/heads/master | 2021-03-12T20:36:40.260043 | 2013-09-08T01:52:14 | 2013-09-08T01:52:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,451 | java | package python;
import org.apache.hadoop.hive.ql.exec.UDFArgumentException;
import org.apache.hadoop.hive.ql.metadata.HiveException;
import org.apache.hadoop.hive.ql.udf.generic.GenericUDF;
import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspector;
import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspectorUtils;
import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspectorUtils.ObjectInspectorCopyOption;
import org.apache.hadoop.hive.serde2.objectinspector.primitive.PrimitiveObjectInspectorFactory;
import org.apache.hadoop.hive.serde2.objectinspector.primitive.WritableConstantStringObjectInspector;
import org.apache.hadoop.io.Text;
import org.python.core.Py;
import org.python.core.PyCode;
import org.python.core.PyObject;
import org.python.util.PythonInterpreter;
/**
* 代码块方式
* @author yuanhang.ghj
*
*/
public class Code extends GenericUDF {
private ObjectInspector funcOI;
private ObjectInspector[] argsOI;//从1开始
private Text result;
private PyCode py_fun;
private PythonInterpreter interp ;
private int argcount = 0;
private boolean printcode = true;
private Importor importor = new Importor();
private PythonConf conf = new PythonConf();
@Override
public ObjectInspector initialize(ObjectInspector[] arguments)
throws UDFArgumentException {
// Check if two arguments were passed
if (arguments.length < 1) {
throw new UDFArgumentException(
"The function py" + " accepts " +
" 1 and more arguments. python('code', arguments...)");
}
importor.ini();
conf.ini();
funcOI = arguments[0];
argcount = arguments.length - 1;
argsOI = arguments;
result = new Text();
//编译代码块为函数
String strcode = ((WritableConstantStringObjectInspector)arguments[0])
.getWritableConstantValue().toString();
if (strcode.trim().equals("")) {
throw new UDFArgumentException(
"The function py" + " " +
"第一个参数不能为空");
}
iniPythonEnv(strcode);
return PrimitiveObjectInspectorFactory.writableStringObjectInspector;
}
//默认返回字符串先.
@Override
public Object evaluate(DeferredObject[] arguments) throws HiveException {
Object pycodeWO = arguments[0].get();
if (pycodeWO == null)
return result;
//设置实参值
for (int i=0; i < argcount; i++) {
Object wobj = arguments[i+1].get();
Object arg = null;
if (wobj != null)
arg = ObjectInspectorUtils.copyToStandardObject(wobj,
argsOI[i+1], ObjectInspectorCopyOption.JAVA);
else {
if (conf.isSkipNone) return result;
arg = Py.None;
}
interp.set(genArg(i), arg);
}
// 执行该代码
if (conf.isTryCatch) {
try {
eval();
} catch (RuntimeException e) {
e.printStackTrace();
}
} else {
eval();
}
// 返回结果
return result;
}
private void eval() {
interp.exec(py_fun);
PyObject res = interp.get("__hive_result__");
result.set(res.toString());
}
private void iniPythonEnv(String rawcode) {
interp = new PythonInterpreter();
interp.exec("import sys;reload(sys);sys.setdefaultencoding('utf-8')");//设置编码,处理中文
importor.includeTo(interp);
String argsDec = genArgs(argcount);
String funDeclare = genNewFunCode(rawcode, argsDec);
try {
if (funDeclare != null)
interp.exec(funDeclare); //预先定义函数
} catch (org.python.core.PySyntaxError e) {
throw new RuntimeException("Pyhton代码块异常,请检查python生成的函数,或者在python命令行中测试运行。\n"
+ "检查以下函数 : \n\n" + funDeclare);
}
String evalfun = genEvalFunName();
if (evalfun == null)
throw new RuntimeException("genEvalFunName() 求值时候的入口函数名不能为空");
//求值时候的入口函数
py_fun = interp.compile("__hive_result__ = " + evalfun + "(" + argsDec + ")");
}
/**
* 求值时候的入口函数名
* @return
*/
protected String genEvalFunName() {
return "adhocfun";
}
/**
* 形式参数名字
* @param index
* @return
*/
protected String genArg(int index) {
return "col"+(index+1);
}
private String genArgs(int argcount) {
StringBuilder bu = new StringBuilder();
for (int i=0; i < argcount; i++) {
bu.append(genArg(i)).append(',');
}
if (argcount > 0) {
bu.deleteCharAt(bu.length()-1);
} else {
bu.append(" ");//avoid null to print
}
return bu.toString();
}
protected String genNewFunCode (String rawcode, String DeclaredArgs) {
String[] codelines = rawcode.split("\n");
if (codelines == null) return null;
StringBuilder bu = new StringBuilder();
bu.append("def adhocfun(").append(DeclaredArgs).append("):\n");
for (String line : codelines) {
// don't change indent and add the one space char
if (! "".equals(line.trim())) {
bu.append(" ").append(line).append("\n");
}
}
return bu.toString();
}
@Override
public String getDisplayString(String[] children) {
return "py(function,arg1,arg2...)";
}
}
| [
"hongjie.is@gmail.com"
] | hongjie.is@gmail.com |
8147ee6c6096d92f096caa8bc9869a9390e5eb8f | e74faf030f1c3dcdf081fc00befdef667c4bbf4f | /jGo/src/cloud/jgo/jjdom/css/concrete/CSSSimpleSelector.java | cdddc2f0b23e2748b0a8a90bd8cec908e00d4a7a | [
"MIT"
] | permissive | jWaspSoftware/jGo | 7ef23faed2cd76e4ca63bc98e08fd12c7e2860fd | 9bdbba5bbaf83914712fdef82088d1d1b4d113b5 | refs/heads/master | 2022-06-05T15:08:12.896485 | 2019-06-17T17:40:42 | 2019-06-17T17:40:42 | 251,272,868 | 0 | 0 | null | 2022-05-20T21:31:06 | 2020-03-30T10:31:40 | HTML | ISO-8859-1 | Java | false | false | 22,652 | java | /**
* JGO - A pure Java library,
* its purpose is to make life easier for the programmer.
*
* J - Java
* G - General
* O - Operations
*
* URL Software : https://www.jgo.cloud/
* URL Documentation : https://www.jgo.cloud/docs/
*
* Copyright © 2018 - Marco Martire (www.jgo.cloud)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the MIT License.
*
* You may obtain a copy of License at :
* https://www.jgo.cloud/LICENSE.txt
*
* To collaborate on this project, you need to do it from the software site.
*
*/
package cloud.jgo.jjdom.css.concrete;
import java.lang.reflect.Array;
import java.util.Arrays;
import java.util.List;
import javax.swing.JOptionPane;
import javax.swing.text.html.HTML;
import cloud.jgo.£;
import cloud.jgo.jjdom.JjDom;
import cloud.jgo.jjdom.css.CSSSelection;
import cloud.jgo.jjdom.css.CSSSelectionFailedException;
import cloud.jgo.jjdom.css.CSSSelector;
import cloud.jgo.jjdom.css.ContextNotFoundException;
import cloud.jgo.jjdom.dom.Recursion;
import cloud.jgo.jjdom.dom.nodes.Element;
import cloud.jgo.jjdom.dom.nodes.Elements;
import cloud.jgo.jjdom.dom.nodes.Node;
import cloud.jgo.jjdom.dom.nodes.html.HTMLElement;
/**
* @author Martire91<br>
* This class represents the default css selector
*/
public class CSSSimpleSelector implements CSSSelector {
private static final long serialVersionUID = 1L;
private Node rootContext = null;
private String[] subSelections = null;
// prima ultimare questo metodo
@Override
public CSSSelection select(String selection) {
if (rootContext == null) {
rootContext = JjDom.document;
}
CSSSelection selection_ = new CSSSimpleSelection();
if (selection.equals(GLOBAL_SELECTOR)) {
Elements allElements = Recursion.getAllElements(rootContext);
((CSSSimpleSelection) selection_).selectedItems = allElements;
} else {
this.subSelections = selection.split(" ");
// questo controllo è provvisorio, quindi non perdere d'occhio
if (this.subSelections.length > 1 || selection.contains("[") && selection.endsWith("]")) {
// ci sono spazi nella selezione
recursiveSupport(rootContext, 0, selection_);
} else {
// non ci sono spazi nella selezione
Elements elements = new Elements();
if (selection.contains(",")) { // è semplicemente una selezione con virgole senza spazi e quindi
// gerarchicità, e senza parentesi quadre
elements = multiSelection(selection);
} else {
// è senza virgole
manageSelectionWithoutHierarchy(selection, elements);
}
((CSSSimpleSelection) selection_).selectedItems = elements;
}
}
return selection_;
}
public void manageSelectionWithoutHierarchy(String selection, Elements elements) {
if (selection.contains("#") && selection.contains(".")) {
/**
* ID AND CLASS
*/
if (selection.startsWith(".")) {
// 4 passo : ottengo classe e id
int index = selection.indexOf("#");
String className, id = null;
className = selection.substring(0, index).replace(".", "").trim();
id = selection.substring(index).replace("#", "").trim();
Elements classElements = ((cloud.jgo.jjdom.dom.Manipulable) rootContext)
.getElementsByClassName(className);
HTMLElement element = (HTMLElement) classElements.getElementById2(id);
elements.add(element);
} else {
if (selection.startsWith("#")) {
int index = selection.indexOf(".");
String id, className = null;
id = selection.substring(0, index).trim().replace("#", "").trim();
className = selection.substring(index).replace(".", "").trim();
Elements classElements = ((cloud.jgo.jjdom.dom.Manipulable) rootContext)
.getElementsByClassName(className);
HTMLElement element = (HTMLElement) classElements.getElementById2(id);
elements.add(element);
} else {
try {
throw new CSSSelectionFailedException(selection);
} catch (CSSSelectionFailedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
} else if (selection.contains("#")) {
/**
* ID
*/
if (selection.startsWith("#")) {
HTMLElement idElement = (HTMLElement) ((cloud.jgo.jjdom.dom.Manipulable) rootContext)
.getElementById(selection.replace("#", ""));
if (idElement != null) {
elements.add(idElement);
}
} else {
try {
throw new CSSSelectionFailedException(selection);
} catch (CSSSelectionFailedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
} else if (selection.contains(".")) {
/**
* CLASS OR TagName and CLASS qui diamo per scontato che se la selezione inizia
* con una classe, deve trattarsi di una sola classe dal momento che id non sono
* presenti, ne virgole e ne spazi e quindi se non dovesse iniziare la selezione
* con il punto della classe, diamo per scontato che inizia con un tagname, di
* fatto questo tipo di selezione sarebbe plausibile perciò diamo per scontato
* che lo è
*/
if (selection.startsWith(".")) {
/*
* Only Class
*/
Elements classElements = ((cloud.jgo.jjdom.dom.Manipulable) rootContext)
.getElementsByClassName(selection.replace(".", ""));
for (Element htmlElement : classElements) {
elements.add(htmlElement);
}
} else {
// qui ci deve essere un tagName come primo elemento
// 1 passo : prendo il tagName e la classe
int index = selection.indexOf(".");
String tagName, className = null;
tagName = selection.substring(0, index).trim();
className = selection.substring(index).replace(".", "").trim();
// ottengo gli elementi della classe
Elements classElements = ((cloud.jgo.jjdom.dom.Manipulable) rootContext)
.getElementsByClassName(className);
/** qui uso la seconda versione del metodo getElementsByTag2 */
Elements tagNameElements = classElements.getElementsByTag2(tagName);
for (Element htmlElement : tagNameElements) {
elements.add(htmlElement);
}
}
} else {
/**
* TagName
*/
Elements tagNameElements = ((cloud.jgo.jjdom.dom.Manipulable) rootContext).getElementsByTag(selection);
for (Element htmlElement : tagNameElements) {
elements.add(htmlElement);
}
}
}
// per selezioni con virgole
private Elements multiSelection(int index, Object context) {
Elements elements = new Elements();
// okok faccio lo split
String[] selections = subSelections[index].split(",");
for (int i = 0; i < selections.length; i++) {
String currentSelection = selections[i];
if (currentSelection.startsWith("#")) {
HTMLElement el = (HTMLElement) ((cloud.jgo.jjdom.dom.Manipulable) context)
.getElementById(currentSelection);
if (el != null) {
elements.add(el);
}
} else if (currentSelection.startsWith(".")) {
Elements els = ((cloud.jgo.jjdom.dom.Manipulable) context).getElementsByClassName(currentSelection);
for (Element htmlElement : els) {
elements.add(htmlElement);
}
} else {
Elements els = ((cloud.jgo.jjdom.dom.Manipulable) context).getElementsByTag(currentSelection);
for (Element htmlElement : els) {
elements.add(htmlElement);
}
}
}
// dopo il ciclo for segno il nuovo contesto
return elements;
}
/**
* IN + QUESTO METODO SOSTITUISCE SIMBOLO ID E CLASS COSA CHE NON FA LA PRIMA
* VERSIONE DEL METODO
*
* @param selection
* @return
*/
private Elements multiSelection(String selection) {
Elements elements = new Elements();
// okok faccio lo split
String[] selections = selection.split(",");
for (int i = 0; i < selections.length; i++) {
String currentSelection = selections[i].trim();
if (currentSelection.startsWith("#")) {
HTMLElement el = (HTMLElement) ((cloud.jgo.jjdom.dom.Manipulable) rootContext)
.getElementById(currentSelection.replace("#", ""));
if (el != null) {
elements.add(el);
}
} else if (currentSelection.startsWith(".")) {
Elements els = ((cloud.jgo.jjdom.dom.Manipulable) rootContext)
.getElementsByClassName(currentSelection.replace(".", ""));
for (Element htmlElement : els) {
elements.add(htmlElement);
}
} else {
Elements els = ((cloud.jgo.jjdom.dom.Manipulable) rootContext).getElementsByTag(currentSelection);
for (Element htmlElement : els) {
elements.add(htmlElement);
}
}
}
// dopo il ciclo for segno il nuovo contesto
return elements;
}
private cloud.jgo.jjdom.dom.Manipulable check(String element) {
cloud.jgo.jjdom.dom.Manipulable manipulable = null;
if (element.startsWith("#")) {
// id
manipulable = ((cloud.jgo.jjdom.dom.Manipulable) rootContext).getElementById(element.replace("#", ""));
} else if (element.startsWith(".")) {
// class
manipulable = ((cloud.jgo.jjdom.dom.Manipulable) rootContext)
.getElementsByClassName(element.replace(".", ""));
} else {
// tagname
manipulable = ((cloud.jgo.jjdom.dom.Manipulable) rootContext).getElementsByTag(element);
}
return manipulable;
}
@Override
public CSSSelection select(String element, String combiner, String element2) {
CSSSelection selection_ = new CSSSimpleSelection();
cloud.jgo.jjdom.dom.Manipulable manipulable = check(element);
// qui controllo se la prima selezione è andata a buon fine
if (manipulable != null) {
// a questo punto controllo il tipo di combinatore
Elements elements = null;
switch (combiner) {
case CHILDREN_COMBINER:
elements = manipulable.getDirectChildrenByTag(element2);
((CSSSimpleSelection) selection_).selectedItems = elements;
break;
case ADJACENT_BROTHERS_COMBINER:
elements = manipulable.getAdiacentSiblingsByTag(element2);
((CSSSimpleSelection) selection_).selectedItems = elements;
break;
case GENERAL_BROTHERS_COMBINER:
elements = manipulable.getGeneralSiblingsByTag(element2);
((CSSSimpleSelection) selection_).selectedItems = elements;
// continuare da qui ...
break;
}
return selection_;
} else {
return null;
}
}
private Elements supportForAttributeSelection(int index, Object context, CSSSelection selection) {
Elements elements = null;
String content = null;
String el = subSelections[index].substring(0, subSelections[index].indexOf("[")).trim();
int index_ = subSelections[index].indexOf("[") + 1;
int lastIndex = subSelections[index].indexOf("]");
String subString = subSelections[index].substring(index_, lastIndex).trim();
String element, attr, val = null;
if (subString.contains("=") && !subString.contains(DIFFERENT_OPERATOR)
&& !subString.contains(STARTS_WITH_OPERATOR) && !subString.contains(CONTAINS_OPERATOR)
&& !subString.contains(ENDS_WITH_OPERATOR)) {
// selezione [attr='value']
attr = subString.split("=")[0].trim();
val = subString.split("=")[1].replaceAll("'", "").trim();
elements = ((cloud.jgo.jjdom.dom.Manipulable) context).getElementsByAttributeValue(attr, val);
((CSSSimpleSelection) selection).selectionCriterion = ((CSSSimpleSelection) selection).selectionCriterion
+ "[attr=val]|";
} else if (subString.contains(DIFFERENT_OPERATOR) && !subString.contains(STARTS_WITH_OPERATOR)
&& !subString.contains(CONTAINS_OPERATOR) && !subString.contains(ENDS_WITH_OPERATOR)) {
// selezione [attr!='value']
attr = subString.split(DIFFERENT_OPERATOR)[0].trim();
val = subString.split(DIFFERENT_OPERATOR)[1].replaceAll("'", "").trim();
elements = ((cloud.jgo.jjdom.dom.Manipulable) context).getElementsByDifferentAttributeValue(attr, val);
((CSSSimpleSelection) selection).selectionCriterion = ((CSSSimpleSelection) selection).selectionCriterion
+ "[attr" + DIFFERENT_OPERATOR + "val]|";
} else if (subString.contains(STARTS_WITH_OPERATOR) && !subString.contains(DIFFERENT_OPERATOR)
&& !subString.contains(CONTAINS_OPERATOR) && !subString.contains(ENDS_WITH_OPERATOR)) {
// selezione [attr^='value']
subString = subString.replace(STARTS_WITH_OPERATOR, "="); // piccola modifica
attr = subString.split("=")[0].trim();
val = subString.split("=")[1].replaceAll("'", "").trim();
elements = ((cloud.jgo.jjdom.dom.Manipulable) context).getElementsThatStartWithAttributevalue(attr, val);
((CSSSimpleSelection) selection).selectionCriterion = ((CSSSimpleSelection) selection).selectionCriterion
+ "[attr" + STARTS_WITH_OPERATOR + "val]|";
} else if (subString.contains(ENDS_WITH_OPERATOR) && !subString.contains(DIFFERENT_OPERATOR)
&& !subString.contains(CONTAINS_OPERATOR) && !subString.contains(STARTS_WITH_OPERATOR)) {
// selezione [attr$='value']
subString = subString.replace(ENDS_WITH_OPERATOR, "="); // piccola modifica
attr = subString.split("=")[0].trim();
val = subString.split("=")[1].replaceAll("'", "").trim();
elements = ((cloud.jgo.jjdom.dom.Manipulable) context).getElementsThatEndWithAttributeValue(attr, val);
((CSSSimpleSelection) selection).selectionCriterion = ((CSSSimpleSelection) selection).selectionCriterion
+ "[attr" + ENDS_WITH_OPERATOR + "val]|";
} else if (subString.contains(CONTAINS_OPERATOR) && !subString.contains(DIFFERENT_OPERATOR)
&& !subString.contains(STARTS_WITH_OPERATOR) && !subString.contains(ENDS_WITH_OPERATOR)) {
// selezione [attr*='value']
// provvisorio che è else
subString = subString.replace(CONTAINS_OPERATOR, "="); // piccola modifica
attr = subString.split("=")[0].trim();
val = subString.split("=")[1].replaceAll("'", "").trim();
elements = ((cloud.jgo.jjdom.dom.Manipulable) context).getElementsThatContainTheAttributeValue(attr, val);
((CSSSimpleSelection) selection).selectionCriterion = ((CSSSimpleSelection) selection).selectionCriterion
+ "[attr" + CONTAINS_OPERATOR + "val]|";
} else {
// quindi qui si prende l'attributo
String attr_ = subString;
elements = ((cloud.jgo.jjdom.dom.Manipulable) context).getElementsByAttribute(attr_);
((CSSSimpleSelection) selection).selectionCriterion = ((CSSSimpleSelection) selection).selectionCriterion
+ "[attr]|";
}
return elements;
}
// qui devo controllare che onon ci siano i simboli delle relazioni
@Override
public void recursiveSupport(Object context, int index, CSSSelection selection) {
boolean selected = false;
if (index < subSelections.length) {
Object selectedNewContext = null;
if (!subSelections[index].isEmpty()) {
// prendo il valore corretto
subSelections[index] = subSelections[index].trim();
// 1 passo : comprendere ora il tipo di subSelection
if (subSelections[index].startsWith("#") && !subSelections[index].contains(" ")) {
// ID
// qui devo controllare se ci sono parentesi quadre nella selezione
// questo è classico della selezione tramite paramentri
if (!subSelections[index].contains("[") && !subSelections[index].contains("]")) {
/** N.B. casomai eliminare questo blocco */
if (subSelections[index].contains(",")) {
selectedNewContext = multiSelection(index, context); // se la vede questo metodo
// qui poi devo verificare come gestire un eventuale valore null restituito
((CSSSimpleSelection) selection).selectionCriterion = ((CSSSimpleSelection) selection).selectionCriterion
+ "multiselection|";
} else {
selectedNewContext = ((cloud.jgo.jjdom.dom.Manipulable) context)
.getElementById(subSelections[index].replace("#", ""));
((CSSSimpleSelection) selection).selectionCriterion = ((CSSSimpleSelection) selection).selectionCriterion
+ "id|";
}
} else {
/**
* 1.0.2 version Qui poi devo fare il controllo se si tratta di un solo
* controllo per attributo oppure di un controllo multiplo, quindi devo lavorare
* sulle parentesi quadre che si trovano all'interno della stringa
*/
String element = subSelections[index].substring(0, subSelections[index].indexOf("[")).trim();
selectedNewContext = ((cloud.jgo.jjdom.dom.Manipulable) context)
.getElementById(element.replace("#", ""));
Elements elements = supportForAttributeSelection(index, selectedNewContext, selection);
if (elements != null) {
for (int i = 0; i < elements.size(); i++) {
selection.getSelectedItems().add(elements.get(i));
}
}
// for moment
return;
}
} else if (subSelections[index].startsWith(".") && !subSelections[index].contains(" ")) {
// CLASS
if (!subSelections[index].contains("[") && !subSelections[index].contains("]")) {
/** N.B. casomai eliminare questo blocco */
if (subSelections[index].contains(",")) {
selectedNewContext = multiSelection(index, context);
((CSSSimpleSelection) selection).selectionCriterion = ((CSSSimpleSelection) selection).selectionCriterion
+ "multiselection|";
} else {
selectedNewContext = ((cloud.jgo.jjdom.dom.Manipulable) context)
.getElementsByClassName(subSelections[index].replace(".", ""));
((CSSSimpleSelection) selection).selectionCriterion = ((CSSSimpleSelection) selection).selectionCriterion
+ "class|";
}
} else {
/**
* 1.0.2 version Qui poi devo fare il controllo se si tratta di un solo
* controllo per attributo oppure di un controllo multiplo, quindi devo lavorare
* sulle parentesi quadre che si trovano all'interno della stringa
*/
// è una ricerca con attributo
String element = subSelections[index].substring(0, subSelections[index].indexOf("[")).trim();
selectedNewContext = ((cloud.jgo.jjdom.dom.Manipulable) context)
.getElementsByClassName(element.replace(".", ""));
Elements elements = supportForAttributeSelection(index, selectedNewContext, selection);
if (elements != null) {
for (int i = 0; i < elements.size(); i++) {
selection.getSelectedItems().add(elements.get(i));
}
}
// for moment
return;
}
} else if (!subSelections[index].contains(" ")) {
// TAGNAME
if (!subSelections[index].contains("[") && !subSelections[index].contains("]")) {
/** N.B. casomai eliminare questo blocco */
if (subSelections[index].contains(",")) {
selectedNewContext = multiSelection(index, context); // se la vede questo metodo
// qui poi devo verificare come gestire un eventuale valore null restituito
((CSSSimpleSelection) selection).selectionCriterion = ((CSSSimpleSelection) selection).selectionCriterion
+ "multiselection|";
} else {
selectedNewContext = ((cloud.jgo.jjdom.dom.Manipulable) context)
.getElementsByTag(subSelections[index]);
((CSSSimpleSelection) selection).selectionCriterion = ((CSSSimpleSelection) selection).selectionCriterion
+ "tagname|";
}
} else {
/**
* 1.0.2 version Qui poi devo fare il controllo se si tratta di un solo
* controllo per attributo oppure di un controllo multiplo, quindi devo lavorare
* sulle parentesi quadre che si trovano all'interno della stringa
*/
String element = subSelections[index].substring(0, subSelections[index].indexOf("[")).trim();
selectedNewContext = ((cloud.jgo.jjdom.dom.Manipulable) context).getElementsByTag(element);
Elements elements = supportForAttributeSelection(index, selectedNewContext, selection);
if (elements != null) {
for (int i = 0; i < elements.size(); i++) {
selection.getSelectedItems().add(elements.get(i));
}
}
// for moment
return;
}
}
}
// okok qui mi controllo se
// abbiamo effettivamente un nuovo elemento sul quale selezionare
if (selectedNewContext != null) {
// si continua con la ricorsività
recursiveSupport(selectedNewContext, index + 1, selection); // ci passo l'incremento della variabile
} else {
try {
throw new ContextNotFoundException("(" + subSelections[index] + ")");
} catch (ContextNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
} else {
// siamo giunti a fine array
if (context instanceof HTMLElement) {
// se è un elemento, aggiungi l'elemento alla lista di elementi selezionati
selection.getSelectedItems().add((HTMLElement) context);
selected = true;
} else if (context instanceof Elements) {
// se è una lista, aggiungi la lista alla lista di elementi selezionati
Elements selectedElements = (Elements) context;
for (int i = 0; i < selectedElements.size(); i++) {
selection.getSelectedItems().add(selectedElements.get(i));
}
selected = true;
}
}
}
/**
*
* @author Martire91<br>
* This method represents the default css selection
*/
public class CSSSimpleSelection implements CSSSelection {
private static final long serialVersionUID = 1L;
private Elements selectedItems = null;
private String selectionString = null;
private String selectionCriterion = "";
private CSSSimpleSelection() {
this.selectedItems = new Elements();
}
@Override
public int getCountSelectedItems() {
// TODO Auto-generated method stub
return selectedItems.size();
}
@Override
public String getSelectionCriterion() {
// TODO Auto-generated method stub
return this.selectionCriterion;
}
@Override
public Elements getSelectedItems() {
// TODO Auto-generated method stub
return this.selectedItems;
}
public String subSelection(int index) {
// TODO Auto-generated method stub
return subSelections[index];
}
}
@Override
public CSSSelection[] select(String... selections) {
CSSSelection[] selections_ = new CSSSimpleSelection[selections.length];
for (int i = 0; i < selections.length; i++) {
selections_[i] = select(selections[i]);
}
return selections_;
}
@Override
public Node getRootContext() {
// TODO Auto-generated method stub
return this.rootContext;
}
@Override
public void setRootContext(Node rootContext) {
this.rootContext = rootContext;
}
}
| [
"staff@jgo.cloud"
] | staff@jgo.cloud |
b989a767a11937315e4b8fa9e1b211837176002d | 061ede9b44b78f7ccdf9c42dfd7a95742b2b2158 | /vehicle-oops-project/src/main/java/com/epam/vehicle/air/HangGlider.java | 37c9c24e39ac021402d4667fcf642691476b2cf4 | [] | no_license | KrishnakanthYachareni/EPAM-RD2018-Training | 7f4e66ba7d4f9c7f830639d28b65629f77fa8159 | 1e821d2d1dfbc3c54aaeeedb0d90f55b5e71765c | refs/heads/master | 2020-03-07T13:51:07.389439 | 2018-03-31T08:10:23 | 2018-03-31T08:10:23 | 127,511,858 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,777 | java | /**
* This program instantiates the properties for HangGlider Vehicle.
*/
package com.epam.vehicle.air;
import java.util.List;
import com.epam.vehicle.AirVehicle;
/**
* @author Krishnakanth_Yachareni & Srinivas_Chintakindhi
*/
public class HangGlider extends AirVehicle {
/**
* length of HangGlider float type.
*/
private float length;
/**
* HangGlider glide ratio float type.
*/
private float glideRatio;
/**
* Hangglider max speed float type.
*/
private float maxSpeed;
/**
* HangGlider model String type.
*/
private String model;
/**
* three index.
*/
private static final int THREE = 3;
/**
* four index.
*/
private static final int FOUR = 4;
/**
* @param properties
* of HangGlider List String type.
*/
public HangGlider(final List<String> properties) {
this.length = Float.parseFloat(properties.get(1));
this.glideRatio = Float.parseFloat(properties.get(2));
this.maxSpeed = Float.parseFloat(properties.get(THREE));
this.model = properties.get(FOUR);
}
/**
* @return the length
*/
public float getLength() {
return length;
}
/**
* @return the glideRatio
*/
public float getGlideRatio() {
return glideRatio;
}
/**
* @return the maxSpeed
*/
public float getMaxSpeed() {
return maxSpeed;
}
/**
* @return the model
*/
public String getModel() {
return model;
}
@Override
public final String toString() {
return "Length :\t" + length + "\nGlide Ratio :\t" + glideRatio
+ "\nMax Speed :\t" + maxSpeed + "\nModel :\t" + model;
}
}
| [
"yacharenikrishnakanth@gmail.com"
] | yacharenikrishnakanth@gmail.com |
613d555e40950ae7eb408b10c93c63ebf926a138 | d6eca07b7f2b8b28dd938c47f9e58cf46f1f6660 | /app/asptt-toulouse-natation-app/src/main/java/asptttoulousenatation/core/document/DocumentUpdateAction.java | 50f12667c0bec8a31dc42bcfc2b96855b229b23c | [] | no_license | miklk/asptt-toulouse-natation-webapps | a0d405e3ecd3ad25bd0b51eda3287132ab367a59 | 18cc01b40db570332269665dda8d8e2d187061da | refs/heads/master | 2020-04-04T00:47:04.984687 | 2018-06-24T22:30:40 | 2018-06-24T22:30:40 | 32,135,650 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 803 | java | package com.asptttoulousenatation.core.document;
import java.io.Serializable;
import java.util.Set;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement
public class DocumentUpdateAction implements Serializable {
/**
*
*/
private static final long serialVersionUID = -385454121619543520L;
private String title;
private String summary;
private Set<String> libelles;
public DocumentUpdateAction() {
}
public String getTitle() {
return title;
}
public void setTitle(String pTitle) {
title = pTitle;
}
public String getSummary() {
return summary;
}
public void setSummary(String pSummary) {
summary = pSummary;
}
public Set<String> getLibelles() {
return libelles;
}
public void setLibelles(Set<String> pLibelles) {
libelles = pLibelles;
}
}
| [
"mkkmikl@gmail.com"
] | mkkmikl@gmail.com |
f5bd13df85864519afe8fcce51e89433ba42dbc0 | 2ae28773963604b3cbee6626959dd262c1cc3a6e | /base/profiler/tests/perf-test/testSrcs/com/android/tools/profiler/GrpcUtils.java | d670de35c94733d073af82f4960c69b89f25ffb4 | [
"Apache-2.0"
] | permissive | qiangxu1996/vmtrace | c95985e76253f140467e20f67d38022b2623e94e | 3411c5436d0d34e6e2b84cbf0e9395ac8c55c9d4 | refs/heads/master | 2022-04-18T22:32:39.132937 | 2020-04-18T23:01:55 | 2020-04-18T23:01:55 | 255,410,085 | 1 | 2 | null | null | null | null | UTF-8 | Java | false | false | 5,781 | java | package com.android.tools.profiler;
import static com.google.common.truth.Truth.assertThat;
import com.android.tools.fakeandroid.FakeAndroidDriver;
import com.android.tools.profiler.proto.*;
import com.android.tools.profiler.proto.Common.Session;
import com.android.tools.profiler.proto.EventProfiler.ActivityDataResponse;
import com.android.tools.profiler.proto.EventProfiler.EventDataRequest;
import com.android.tools.profiler.proto.Profiler.BeginSessionRequest;
import com.android.tools.profiler.proto.Profiler.BeginSessionResponse;
import com.android.tools.profiler.proto.Profiler.EndSessionRequest;
import io.grpc.ManagedChannel;
import io.grpc.ManagedChannelBuilder;
/**
* Test class for managing a connection to perfd.
*/
public class GrpcUtils {
private final ManagedChannel myChannel;
private final TransportServiceGrpc.TransportServiceBlockingStub myTransportServiceStub;
private final ProfilerServiceGrpc.ProfilerServiceBlockingStub myProfilerServiceStub;
private final EventServiceGrpc.EventServiceBlockingStub myEventServiceStub;
private final NetworkServiceGrpc.NetworkServiceBlockingStub myNetworkServiceStub;
private final MemoryServiceGrpc.MemoryServiceBlockingStub myMemoryServiceStub;
private final EnergyServiceGrpc.EnergyServiceBlockingStub myEnergyServiceStub;
private final FakeAndroidDriver myMockApp;
/** Connect to perfd using a socket and port, currently abstract sockets are not supported. */
public GrpcUtils(String socket, int port, FakeAndroidDriver mockApp) {
myChannel = connectGrpc(socket, port);
myTransportServiceStub = TransportServiceGrpc.newBlockingStub(myChannel);
myProfilerServiceStub = ProfilerServiceGrpc.newBlockingStub(myChannel);
myEventServiceStub = EventServiceGrpc.newBlockingStub(myChannel);
myNetworkServiceStub = NetworkServiceGrpc.newBlockingStub(myChannel);
myMemoryServiceStub = MemoryServiceGrpc.newBlockingStub(myChannel);
myEnergyServiceStub = EnergyServiceGrpc.newBlockingStub(myChannel);
myMockApp = mockApp;
}
public TransportServiceGrpc.TransportServiceBlockingStub getTransportStub() {
return myTransportServiceStub;
}
public ProfilerServiceGrpc.ProfilerServiceBlockingStub getProfilerStub() {
return myProfilerServiceStub;
}
public EventServiceGrpc.EventServiceBlockingStub getEventStub() {
return myEventServiceStub;
}
public NetworkServiceGrpc.NetworkServiceBlockingStub getNetworkStub() {
return myNetworkServiceStub;
}
public MemoryServiceGrpc.MemoryServiceBlockingStub getMemoryStub() {
return myMemoryServiceStub;
}
public EnergyServiceGrpc.EnergyServiceBlockingStub getEnergyStub() {
return myEnergyServiceStub;
}
private ManagedChannel connectGrpc(String socket, int port) {
ClassLoader stashedContextClassLoader = Thread.currentThread().getContextClassLoader();
Thread.currentThread().setContextClassLoader(ManagedChannelBuilder.class.getClassLoader());
ManagedChannel channel =
ManagedChannelBuilder.forAddress(socket, port).usePlaintext(true).build();
Thread.currentThread().setContextClassLoader(stashedContextClassLoader);
return channel;
}
/**
* Support function to get the main activity. This function checks for the activity name, if it
* is not the default activity an assert will be thrown.
*/
public ActivityDataResponse getActivity(Session session) {
ActivityDataResponse response =
myEventServiceStub.getActivityData(
EventDataRequest.newBuilder().setSession(session).build());
return response;
}
/** Begins the profiler session on the specified pid. */
public Session beginSession(int pid) {
BeginSessionRequest.Builder requestBuilder =
BeginSessionRequest.newBuilder().setDeviceId(1234).setPid(pid);
BeginSessionResponse response = myProfilerServiceStub.beginSession(requestBuilder.build());
return response.getSession();
}
/**
* Begins the profiler session on the specified pid and attach the JVMTI agent via the
* agentAttachPort.
*/
public Session beginSessionWithAgent(int pid, int agentAttachPort, String agentConfigPath) {
myTransportServiceStub.execute(
Transport.ExecuteRequest.newBuilder()
.setCommand(
Commands.Command.newBuilder()
.setType(Commands.Command.CommandType.ATTACH_AGENT)
.setPid(agentAttachPort)
.setStreamId(1234)
.setAttachAgent(
Commands.AttachAgent.newBuilder()
.setAgentLibFileName("libjvmtiagent.so")
.setAgentConfigPath(agentConfigPath))
.build())
.build());
// Block until we can verify the agent was fully attached, which takes a while.
assertThat(myMockApp.waitForInput("Transport agent connected to daemon.")).isTrue();
Session session = beginSession(pid);
assertThat(myMockApp.waitForInput("Profiler initialization complete on agent.")).isTrue();
return session;
}
/** Ends the profiler session for the specified sessionId. */
public void endSession(long sessionId) {
myProfilerServiceStub.endSession(
EndSessionRequest.newBuilder().setSessionId(sessionId).build());
}
}
| [
"qiangxu1996@gmail.com"
] | qiangxu1996@gmail.com |
eb2a746eaca69d13b4f641a7ea6ebb50d6d13da1 | 9914602259007ed4c135215d0b80d26495ead42a | /src/group4/ECS/Splash.java | f08506ca1c9f1510010c6d58e339449ac0132137 | [] | no_license | JurisMajors/The-Ghost-Of-The-Ninja | b640e2b405473269c57575b616c918258b75e74e | 2d6880a729f6bda2fe31b016146dad65e5840701 | refs/heads/master | 2023-04-29T14:48:34.719177 | 2019-06-21T16:30:37 | 2019-06-21T16:30:37 | 182,536,230 | 0 | 2 | null | 2023-04-14T17:48:08 | 2019-04-21T13:21:54 | Java | UTF-8 | Java | false | false | 800 | java | package group4.ECS;
import com.badlogic.ashley.core.Entity;
import group4.ECS.components.GraphicsComponent;
import group4.ECS.components.events.Event;
import group4.ECS.components.physics.PositionComponent;
import group4.ECS.etc.TheEngine;
import group4.graphics.Shader;
import group4.graphics.Texture;
import group4.maths.Vector3f;
public class Splash extends Entity {
public Splash(Vector3f position, int duration) {
this.add(new GraphicsComponent(Shader.SIMPLE, Texture.SPLASH, new Vector3f(1f, 1f, 0f), false));
this.add(new PositionComponent(position));
TheEngine.getInstance().addEntity(this);
new Event(this, duration, ((entity, dur, passed) ->
{
if (passed == dur) TheEngine.getInstance().removeEntity(entity);
}));
}
}
| [
"32071671+JurisMajors@users.noreply.github.com"
] | 32071671+JurisMajors@users.noreply.github.com |
c2e453f0f4c37c33e73a5e05ebfa576ff4a4be9e | 2ac050ca2dd9f8ebcf909258116e9bd52a90eca4 | /src/com/codifyd/stepxsd/AnalyzerElementType.java | 35cd5d29f99bc10eda73a6a032ef8448d8497092 | [] | no_license | pankajsharma184/step_automation | ed9ee32f2e1525b2a6e2944dc12fd4af164cac59 | c8bff137335499ccefb204eb97be2948f0510b09 | refs/heads/master | 2023-06-17T22:24:08.668210 | 2021-07-07T07:20:49 | 2021-07-07T07:20:49 | 383,709,645 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,108 | java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2020.04.16 at 01:19:41 PM IST
//
package com.codifyd.stepxsd;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* Represents an item in a result list. ItemID identifies the item and refers to the element
* AnalyzerItem. If the item refers to a step node, one of the following attributes will be present:
* AssetID, ProductID, or ClassificationID
*
*
* <p>Java class for AnalyzerElementType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="AnalyzerElementType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="ProductID" type="{http://www.stibosystems.com/step}StepID" />
* <attribute name="AssetID" type="{http://www.stibosystems.com/step}StepID" />
* <attribute name="ItemID" use="required" type="{http://www.stibosystems.com/step}StepID" />
* <attribute name="ClassificationID" type="{http://www.stibosystems.com/step}StepID" />
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AnalyzerElementType")
public class AnalyzerElementType {
@XmlAttribute(name = "ProductID")
protected String productID;
@XmlAttribute(name = "AssetID")
protected String assetID;
@XmlAttribute(name = "ItemID", required = true)
protected String itemID;
@XmlAttribute(name = "ClassificationID")
protected String classificationID;
/**
* Gets the value of the productID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getProductID() {
return productID;
}
/**
* Sets the value of the productID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setProductID(String value) {
this.productID = value;
}
/**
* Gets the value of the assetID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAssetID() {
return assetID;
}
/**
* Sets the value of the assetID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAssetID(String value) {
this.assetID = value;
}
/**
* Gets the value of the itemID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getItemID() {
return itemID;
}
/**
* Sets the value of the itemID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setItemID(String value) {
this.itemID = value;
}
/**
* Gets the value of the classificationID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getClassificationID() {
return classificationID;
}
/**
* Sets the value of the classificationID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setClassificationID(String value) {
this.classificationID = value;
}
}
| [
"aks@BMI0327.bytemanagers.com"
] | aks@BMI0327.bytemanagers.com |
a79f76d2a0a3335e458ab32bb36e8ba3f5c6384c | ef8a143893beaaa90f9287133880e90ea7d2aaaa | /Perestroika-Problem/src/main/java/cz/cuni/mff/perestroika/perestroika_problem_5_3_0_4_0_1_5/E_Resources.java | a2952a7295a8de0632d5b4727ff3e6d8ac23b23a | [
"MIT"
] | permissive | martinpilat/jPDDL | fb976ae66b248eaa021b8662f300829ef9bdb198 | c5e8389cccc9707b387de41298ae51983908a3f6 | refs/heads/master | 2021-06-13T18:41:14.994546 | 2021-03-26T15:55:23 | 2021-03-26T15:55:23 | 155,592,082 | 0 | 0 | MIT | 2018-10-31T16:46:57 | 2018-10-31T16:46:57 | null | UTF-8 | Java | false | false | 1,077 | java | package cz.cuni.mff.perestroika.perestroika_problem_5_3_0_4_0_1_5;
import cz.cuni.mff.perestroika.domain.types.T_Resource;
import cz.cuni.mff.perestroika.problem.E_Resource;
public final class E_Resources {
public static final T_Resource r1 = new T_Resource("r1");
public static final T_Resource r2 = new T_Resource("r2");
public static final T_Resource r3 = new T_Resource("r3");
public static final T_Resource r4 = new T_Resource("r4");
public static final T_Resource r5 = new T_Resource("r5");
public static final T_Resource r6 = new T_Resource("r6");
public static final T_Resource r7 = new T_Resource("r7");
static {
E_Resource.THIS.register(T_Resource.getIndex(r1), r1);
E_Resource.THIS.register(T_Resource.getIndex(r2), r2);
E_Resource.THIS.register(T_Resource.getIndex(r3), r3);
E_Resource.THIS.register(T_Resource.getIndex(r4), r4);
E_Resource.THIS.register(T_Resource.getIndex(r5), r5);
E_Resource.THIS.register(T_Resource.getIndex(r6), r6);
E_Resource.THIS.register(T_Resource.getIndex(r7), r7);
}
protected E_Resources() {
}
} | [
"martin.pilat@gmail.com"
] | martin.pilat@gmail.com |
18d5722502bb6159be3d023b92136f7e502a7c12 | 0b666255a6945aa84281e5f64f6ccaab45c4ca13 | /cmsv2.0.0/src/com/app/cms/entity/main/CmsUserSite.java | eb6c340c294bf6e045bfdebe925cf00fa85c64b5 | [] | no_license | zhangygit/cmsv2.0.0 | a8cdc77ceb99b50bdf5b8ac7c99244c3ecc7e43a | d54ae6bc9855860c7d447629d31d22e2c9417d31 | refs/heads/master | 2021-01-17T21:28:52.841407 | 2014-08-25T02:13:00 | 2014-08-25T02:13:00 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 706 | java | package com.app.cms.entity.main;
import com.app.cms.entity.main.base.BaseCmsUserSite;
public class CmsUserSite extends BaseCmsUserSite {
private static final long serialVersionUID = 1L;
/* [CONSTRUCTOR MARKER BEGIN] */
public CmsUserSite () {
super();
}
/**
* Constructor for primary key
*/
public CmsUserSite (java.lang.Integer id) {
super(id);
}
/**
* Constructor for required fields
*/
public CmsUserSite (
java.lang.Integer id,
com.app.cms.entity.main.CmsUser user,
com.app.cms.entity.main.CmsSite site,
java.lang.Byte checkStep,
java.lang.Boolean allChannel) {
super (
id,
user,
site,
checkStep,
allChannel);
}
/* [CONSTRUCTOR MARKER END] */
} | [
"17909328@163.com"
] | 17909328@163.com |
a52402a635ec09ee8a431d21cd7996e9531c19c2 | cd409aad24412e9340a2a631fc67039996bd7f85 | /src/main/java/service/CountryService.java | c8fca7d7147f6de072bd09a85d395ca2b8500f77 | [] | no_license | NANYASH/travelSite | 820165f6b85ed1be4e7738ae600f736016b71c69 | 0d76c1d25d04be622ea3dbb048117a027bacd299 | refs/heads/master | 2020-04-06T18:25:24.041764 | 2018-11-15T11:03:34 | 2018-11-15T11:03:34 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 495 | java | package service;
import entity.Country;
import service.exception.ServiceException;
import java.util.List;
public interface CountryService {
List<Country> findAllCountries() throws ServiceException;
boolean checkCreateCountry(String countryName) throws ServiceException;
boolean checkEditCountry(String countryId, String countryName) throws ServiceException;
boolean delete(Long id) throws ServiceException;
Country findEntityById(Long id) throws ServiceException;
}
| [
"miss.nanya80@gmail.com"
] | miss.nanya80@gmail.com |
488d93a65bff4c7de64a244f5ef952ffeffaae92 | c4f661b801cd0f868e5de3fc62a6b3d388ae2c82 | /src/main/java/com/idenysenko/cassandra/demo/config/CassandraConfig.java | 26cef7ad8dc15585b9ee2eb07a18a371d1f70439 | [] | no_license | phanirajl/cassandra_demo | 15b8ad4100f16f86cf0c20cee44b0fdd78dd2f33 | a393165cc87b38ec69f01113ce00a12bad79f9c8 | refs/heads/master | 2020-06-27T23:14:59.850526 | 2019-08-01T14:42:10 | 2019-08-01T14:42:10 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,475 | java | package com.idenysenko.cassandra.demo.config;
import com.datastax.driver.core.Cluster;
import com.datastax.driver.core.QueryLogger;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.cassandra.config.AbstractCassandraConfiguration;
import org.springframework.data.cassandra.config.SchemaAction;
import org.springframework.data.cassandra.core.cql.keyspace.CreateKeyspaceSpecification;
import java.util.Collections;
import java.util.List;
@Configuration
public class CassandraConfig extends AbstractCassandraConfiguration {
@Value("${spring.data.cassandra.keyspace-name}")
private String keyspace;
@Override
public SchemaAction getSchemaAction() {
return SchemaAction.CREATE_IF_NOT_EXISTS;
}
@Override
protected List<CreateKeyspaceSpecification> getKeyspaceCreations() {
return Collections.singletonList(
CreateKeyspaceSpecification.createKeyspace(keyspace).ifNotExists()
);
}
@Override
protected String getKeyspaceName() {
return keyspace;
}
@Override
public String[] getEntityBasePackages() {
return new String[]{"com.idenysenko.cassandra.demo.entity"};
}
@Override
protected Cluster getRequiredCluster() {
QueryLogger queryLogger = QueryLogger.builder().build();
return super.getRequiredCluster().register(queryLogger);
}
}
| [
"idenys@softserveinc.com"
] | idenys@softserveinc.com |
e71b3dca420ce4a231db55bce8bed9a3423a9638 | c341c957cad3e8a6fb62577d4fb2f97eb270fed7 | /app/src/main/java/com/niscalindo/simantan/controller/TeganganBeban.java | 49fcfa26a3a79f3566c15d26abf8eb9c6fd7f2c6 | [] | no_license | rizaldihabibie/simantan | cd3ed80e32116d20cd8d5659ef21e88cbab0a999 | 3dfad43e930630a79ea1ac22adaa0874af36041f | refs/heads/master | 2021-05-09T23:28:13.311117 | 2018-06-27T14:06:22 | 2018-06-27T14:06:22 | 118,783,898 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 20,195 | java | package com.niscalindo.simantan.controller;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
import com.niscalindo.simantan.R;
import com.niscalindo.simantan.database.model.Gardu;
import java.io.Serializable;
import java.math.RoundingMode;
import java.text.DecimalFormat;
/**
* Created by USER on 3/3/2018.
*/
public class TeganganBeban extends AppCompatActivity {
private Context context;
private Gardu garduMap;
private EditText rN, rS, sN,rT,tN,sT;
private EditText aR, aS, aT, aN;
private EditText bR,bS, bT, bN;
private EditText cR,cS, cT, cN;
private EditText dR,dS, dT, dN;
private EditText totalR,totalS, totalT, totalN;
private Button nextButton, backButton;
private Double kolomR, kolomS,kolomT,kolomN;
private DecimalFormat df;
@Override
protected void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.tegangan_beban);
context = this;
df = new DecimalFormat("#.###");
df.setRoundingMode(RoundingMode.CEILING);
init();
if(getIntent().hasExtra("GARDU_SESSION")){
garduMap = (Gardu) getIntent().getSerializableExtra("GARDU_SESSION");
}
if(getIntent().hasExtra("GARDU_TEGANGAN")){
garduMap = (Gardu) getIntent().getSerializableExtra("GARDU_TEGANGAN");
fillData(garduMap);
}
save();
back();
}
public void fillData(Gardu gardu){
rN.setText(gardu.getRn());
rS.setText(gardu.getRs());
sN.setText(gardu.getSn());
rT.setText(gardu.getRt());
tN.setText(gardu.getTn());
sT.setText(gardu.getSt());
aR.setText(gardu.getAr());
aS.setText(gardu.getAs());
aT.setText(gardu.getAt());
aN.setText(gardu.getAn());
bR.setText(gardu.getBr());
bS.setText(gardu.getBs());
bT.setText(gardu.getBt());
bN.setText(gardu.getBn());
cR.setText(gardu.getCr());
cS.setText(gardu.getCs());
cT.setText(gardu.getCt());
cN.setText(gardu.getCn());
dR.setText(gardu.getDr());
dS.setText(gardu.getDs());
dT.setText(gardu.getDt());
dN.setText(gardu.getDn());
}
public void init(){
nextButton = (Button)findViewById(R.id.saveButton);
backButton = (Button)findViewById(R.id.backButton);
rN = (EditText)findViewById(R.id.r_n);
rS = (EditText)findViewById(R.id.r_s);
sN = (EditText)findViewById(R.id.s_n);
rT = (EditText)findViewById(R.id.r_t);
tN = (EditText)findViewById(R.id.t_n);
sT = (EditText)findViewById(R.id.s_t);
aR = (EditText)findViewById(R.id.a_r);
aS = (EditText)findViewById(R.id.a_s);
aT = (EditText)findViewById(R.id.a_t);
aN = (EditText)findViewById(R.id.a_n);
bR = (EditText)findViewById(R.id.b_r);
bS = (EditText)findViewById(R.id.b_s);
bT = (EditText)findViewById(R.id.b_t);
bN = (EditText)findViewById(R.id.b_n);
cR = (EditText)findViewById(R.id.c_r);
cS = (EditText)findViewById(R.id.c_s);
cT = (EditText)findViewById(R.id.c_t);
cN = (EditText)findViewById(R.id.c_n);
dR = (EditText)findViewById(R.id.d_r);
dS = (EditText)findViewById(R.id.d_s);
dT = (EditText)findViewById(R.id.d_t);
dN = (EditText)findViewById(R.id.d_n);
aR.setText("0.0");
aS.setText("0.0");
aT.setText("0.0");
aN.setText("0.0");
bR.setText("0.0");
bS.setText("0.0");
bT.setText("0.0");
bN.setText("0.0");
cR.setText("0.0");
cS.setText("0.0");
cT.setText("0.0");
cN.setText("0.0");
dR.setText("0.0");
dS.setText("0.0");
dT.setText("0.0");
dN.setText("0.0");
totalR = (EditText)findViewById(R.id.total_r);
totalS = (EditText)findViewById(R.id.total_s);
totalT = (EditText)findViewById(R.id.total_t);
totalN = (EditText)findViewById(R.id.total_n);
totalR.setEnabled(false);
totalN.setEnabled(false);
totalS.setEnabled(false);
totalT.setEnabled(false);
aR.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (!hasFocus) {
if(checkNumber(aR.getText().toString())){
onChangeListener(0);
}else{
Toast.makeText(context, "Not A Number", Toast.LENGTH_SHORT).show();
}
}
}
});
bR.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (!hasFocus) {
if(checkNumber(bR.getText().toString())){
onChangeListener(0);
}else{
Toast.makeText(context, "Not A Number", Toast.LENGTH_SHORT).show();
}
}
}
});
cR.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (!hasFocus) {
if(checkNumber(cR.getText().toString())){
onChangeListener(0);
}else{
Toast.makeText(context, "Not A Number", Toast.LENGTH_SHORT).show();
}
}
}
});
dR.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (!hasFocus) {
if(checkNumber(dR.getText().toString())){
onChangeListener(0);
}else{
Toast.makeText(context, "Not A Number", Toast.LENGTH_SHORT).show();
}
}
}
});
aS.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (!hasFocus) {
if(checkNumber(aS.getText().toString())){
onChangeListener(1);
}else{
Toast.makeText(context, "Not A Number", Toast.LENGTH_SHORT).show();
}
}
}
});
bS.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (!hasFocus) {
if(checkNumber(bS.getText().toString())){
onChangeListener(1);
}else{
Toast.makeText(context, "Not A Number", Toast.LENGTH_SHORT).show();
}
}
}
});
cS.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (!hasFocus) {
if(checkNumber(cS.getText().toString())){
onChangeListener(1);
}else{
Toast.makeText(context, "Not A Number", Toast.LENGTH_SHORT).show();
}
}
}
});
dS.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (!hasFocus) {
if(checkNumber(dS.getText().toString())){
onChangeListener(1);
}else{
Toast.makeText(context, "Not A Number", Toast.LENGTH_SHORT).show();
}
}
}
});
aT.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (!hasFocus) {
if(checkNumber(aT.getText().toString())){
onChangeListener(2);
}else{
Toast.makeText(context, "Not A Number", Toast.LENGTH_SHORT).show();
}
}
}
});
bT.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (!hasFocus) {
if(checkNumber(bT.getText().toString())){
onChangeListener(2);
}else{
Toast.makeText(context, "Not A Number", Toast.LENGTH_SHORT).show();
}
}
}
});
cT.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (!hasFocus) {
if(checkNumber(cT.getText().toString())){
onChangeListener(2);
}else{
Toast.makeText(context, "Not A Number", Toast.LENGTH_SHORT).show();
}
}
}
});
dT.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (!hasFocus) {
if(checkNumber(dT.getText().toString())){
onChangeListener(2);
}else{
Toast.makeText(context, "Not A Number", Toast.LENGTH_SHORT).show();
}
}
}
});
aN.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (!hasFocus) {
if(checkNumber(aN.getText().toString())){
onChangeListener(3);
}else{
Toast.makeText(context, "Not A Number", Toast.LENGTH_SHORT).show();
}
}
}
});
bN.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (!hasFocus) {
if(checkNumber(bN.getText().toString())){
onChangeListener(3);
}else{
Toast.makeText(context, "Not A Number", Toast.LENGTH_SHORT).show();
}
}
}
});
cN.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (!hasFocus) {
if(checkNumber(cN.getText().toString())){
onChangeListener(3);
}else{
Toast.makeText(context, "Not A Number", Toast.LENGTH_SHORT).show();
}
}
}
});
dN.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (!hasFocus) {
if(checkNumber(dN.getText().toString())){
onChangeListener(3);
}else{
Toast.makeText(context, "Not A Number", Toast.LENGTH_SHORT).show();
}
}
}
});
}
public void save(){
nextButton.setOnClickListener(
new View.OnClickListener() {
@Override
public void onClick(View v) {
if(rN.getText().toString().equals("")){
Toast.makeText(context, "Mohon Isi Data R-N", Toast.LENGTH_SHORT).show();
}else if(rS.getText().toString().equals("")){
Toast.makeText(context, "Mohon Isi R-S", Toast.LENGTH_SHORT).show();
}else if(sN.getText().toString().equals("")){
Toast.makeText(context, "Mohon Isi S-N", Toast.LENGTH_SHORT).show();
}else if(rT.getText().toString().equals("")){
Toast.makeText(context, "Mohon Isi R-T", Toast.LENGTH_SHORT).show();
}else if(tN.getText().equals("")){
Toast.makeText(context, "Mohon Isi T-N", Toast.LENGTH_SHORT).show();
}else if(sT.getText().toString().equals("")){
Toast.makeText(context, "Mohon Isi S-T", Toast.LENGTH_SHORT).show();
}else if(aR.getText().equals("")){
Toast.makeText(context, "Mohon Isi Kolom R Baris A", Toast.LENGTH_SHORT).show();
}else if(aS.getText().toString().equals("")){
Toast.makeText(context, "Mohon Isi Kolom S Baris A", Toast.LENGTH_SHORT).show();
}else if(aT.getText().toString().equals("")){
Toast.makeText(context, "Mohon Isi Kolom T Baris A", Toast.LENGTH_SHORT).show();
}else if(aN.getText().toString().equals("")){
Toast.makeText(context, "Mohon Isi Kolom N Baris A", Toast.LENGTH_SHORT).show();
}else if(bR.getText().toString().equals("")){
Toast.makeText(context, "Mohon Isi Kolom R Baris B", Toast.LENGTH_SHORT).show();
}else if(bS.getText().toString().equals("")){
Toast.makeText(context, "Mohon Isi Kolom S Baris B", Toast.LENGTH_SHORT).show();
}else if(bT.getText().toString().equals("")){
Toast.makeText(context, "Mohon Isi Kolom T Baris B", Toast.LENGTH_SHORT).show();
}else if(bN.getText().toString().equals("")){
Toast.makeText(context, "Mohon Isi Kolom N Baris B", Toast.LENGTH_SHORT).show();
}else if(cR.getText().toString().equals("")){
Toast.makeText(context, "Mohon Isi Kolom R Baris C", Toast.LENGTH_SHORT).show();
}else if(cS.getText().toString().equals("")){
Toast.makeText(context, "Mohon Isi Kolom S Baris C", Toast.LENGTH_SHORT).show();
}else if(cT.getText().toString().equals("")){
Toast.makeText(context, "Mohon Isi Kolom T Baris C", Toast.LENGTH_SHORT).show();
}else if(cN.getText().toString().equals("")){
Toast.makeText(context, "Mohon Isi Kolom N Baris C", Toast.LENGTH_SHORT).show();
}else if(dR.getText().toString().equals("")){
Toast.makeText(context, "Mohon Isi Kolom R Baris D", Toast.LENGTH_SHORT).show();
}else if(dS.getText().toString().equals("")){
Toast.makeText(context, "Mohon Isi Kolom S Baris D", Toast.LENGTH_SHORT).show();
}else if(dT.getText().toString().equals("")){
Toast.makeText(context, "Mohon Isi Kolom T Baris D", Toast.LENGTH_SHORT).show();
}else if(dN.getText().toString().equals("")){
Toast.makeText(context, "Mohon Isi Kolom N Baris D", Toast.LENGTH_SHORT).show();
}else {
garduMap.setRn(rN.getText().toString());
garduMap.setRs(rS.getText().toString());
garduMap.setSn(sN.getText().toString());
garduMap.setRt(rT.getText().toString());
garduMap.setTn(tN.getText().toString());
garduMap.setSt(sT.getText().toString());
garduMap.setAr(aR.getText().toString());
garduMap.setAs(aS.getText().toString());
garduMap.setAt(aT.getText().toString());
garduMap.setAn(aN.getText().toString());
garduMap.setBr(bR.getText().toString());
garduMap.setBs(bS.getText().toString());
garduMap.setBt(bT.getText().toString());
garduMap.setBn(bN.getText().toString());
garduMap.setCr(cR.getText().toString());
garduMap.setCs(cS.getText().toString());
garduMap.setCt(cT.getText().toString());
garduMap.setCn(cN.getText().toString());
garduMap.setDr(dR.getText().toString());
garduMap.setDs(dS.getText().toString());
garduMap.setDt(dT.getText().toString());
garduMap.setDn(dN.getText().toString());
Intent intent = new Intent("com.niscalindo.simantan.controller.UkuranLain");
intent.putExtra("GARDU_SESSION", (Serializable) garduMap);
startActivity(intent);
}
}
}
);
}
public void back(){
backButton.setOnClickListener(
new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent("com.niscalindo.simantan.controller.AddGardu");
intent.putExtra("GARDU_AND_MAP", (Serializable) garduMap);
startActivity(intent);
}
}
);
}
public void onChangeListener(int column){
try {
switch (column) {
case 0:
kolomR = (Double.valueOf(aR.getText().toString())) + (Double.valueOf(bR.getText().toString())) + (Double.valueOf(cR.getText().toString())) + (Double.valueOf(dR.getText().toString()));
totalR.setText("" + df.format(kolomR));
break;
case 1:
kolomS = (Double.valueOf(aS.getText().toString())) + (Double.valueOf(bS.getText().toString())) + (Double.valueOf(cS.getText().toString())) + (Double.valueOf(dS.getText().toString()));
totalS.setText("" + df.format(kolomS));
break;
case 2:
kolomT = (Double.valueOf(aT.getText().toString())) + (Double.valueOf(bT.getText().toString())) + (Double.valueOf(cT.getText().toString())) + (Double.valueOf(dT.getText().toString()));
totalT.setText("" + df.format(kolomT));
break;
case 3:
kolomN = (Double.valueOf(aN.getText().toString())) + (Double.valueOf(bN.getText().toString())) + (Double.valueOf(cN.getText().toString())) + (Double.valueOf(dN.getText().toString()));
totalN.setText("" + df.format(kolomN));
break;
}
}catch (NumberFormatException e){
Toast.makeText(context, "Error Number Format !", Toast.LENGTH_SHORT).show();
}
}
public boolean checkNumber(String input){
return input.matches("\\d*\\.?\\d+");
}
}
| [
"rizaldihabibie28@gmail.com"
] | rizaldihabibie28@gmail.com |
9dbd1b0af740479596873656528da286ff5bfd66 | e62407e3aae268c81addf5384b5aa173a007aee6 | /src/exercicios/Tabuada.java | 45e1bff633092d6b7f2e879f2fdc57c8dd8f33c3 | [] | no_license | jhuan0999/IntroducaoJava | 29c5a7c916d09027a964ae39df49658f6437d8d9 | 0899a90b969430bd7db75b7b03aac31ff4ace39c | refs/heads/main | 2023-04-08T04:11:33.052718 | 2021-04-21T23:29:15 | 2021-04-21T23:29:15 | 348,423,071 | 0 | 0 | null | 2021-04-21T23:29:15 | 2021-03-16T16:47:43 | Java | UTF-8 | Java | false | false | 263 | java | package exercicios;
/*
O metodo deve retornar a tabuada de um inteiro e o
printar no terminal, caso o numero for menor que 1
ou maior que 100 retorne uma mensagem de erro.
*/
public class Tabuada {
public static void main(String[] args){
}
}
| [
"donjhuan.victor@gmail.com"
] | donjhuan.victor@gmail.com |
e6e8afbffba3385ca542a2a7d3fc455a2799bd7d | 012c03b8cea6c2d467fd1a1342edf825cda70b49 | /Java AIO/HostLookup.java | f12463195daa1a354c935250111048a2b726a525 | [] | no_license | TheAlchemistNerd/Learning-Java | 7fd4113fcfd8049eb9f6f728676e40fb259ac214 | 08e29ba52fe30a14b3bf4045e063f4bfe289196c | refs/heads/main | 2023-03-16T15:06:05.209278 | 2021-03-10T15:12:45 | 2021-03-10T15:12:45 | 336,485,077 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,169 | java | import java.util.Scanner;
import java.net.*;
public class HostLookup
{
static Scanner sc = new Scanner (System.in);
public static void main(String[] args)
{
System.out.println("Welcome to the IP lookup application");
String host;
do
{
System.out.print("\nEnter a host name: ");
host = sc.nextLine();
try
{
InetAddress[] addresses
= InetAddress.getAllByName(host);
for(InetAddress ip : addresses)
System.out.println(ip.toString());
}
catch (UnknownHostException e)
{
System.out.println("Uknown host.");
}
} while(doAgain());
}
private static boolean doAgain()
{
System.out.println();
String s;
while (true)
{
System.out.print("Look up another? "
+ "(Y or N) ");
s = sc.nextLine();
if (s.equalsIgnoreCase("Y"))
return true;
else if (s.equalsIgnoreCase("N"))
return false;
}
}
} | [
"nevillemaloba@yahoo.com"
] | nevillemaloba@yahoo.com |
c53b0fc2ee2001f77ad60e33ed8fddc8bede6cc4 | 2f53a1716d24a9749be042361f00db22c393c90d | /src/main/java/com/grossbart/forbiddenfunction/FFRunner.java | b004b2d192dafdeb1fe832274b82672717ede515 | [
"Apache-2.0"
] | permissive | zgrossbart/forbiddenfunctions | 1e3049058ae6b2c595a0f71977ab5fdda7a16e0b | ab73699ffad01ec0befec55f6cb27280f067291a | refs/heads/master | 2021-01-19T07:05:42.397059 | 2015-01-10T17:04:24 | 2015-01-10T17:04:24 | 29,027,142 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 10,622 | java | /*******************************************************************************
*
* Copyright 2015 Zack Grossbart
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
******************************************************************************/
package com.grossbart.forbiddenfunction;
import java.io.File;
import java.io.IOException;
import java.io.PrintStream;
import java.util.ArrayList;
import java.util.List;
import java.util.StringTokenizer;
import java.util.logging.Level;
import com.google.common.collect.Lists;
import com.google.javascript.jscomp.ErrorManager;
import org.apache.commons.io.FileUtils;
import org.kohsuke.args4j.Argument;
import org.kohsuke.args4j.CmdLineException;
import org.kohsuke.args4j.CmdLineParser;
import org.kohsuke.args4j.Option;
import org.kohsuke.args4j.spi.BooleanOptionHandler;
/**
* The runner handles all argument processing and sets up the precompile process.
*/
public class FFRunner
{
@Option(name = "--help", handler = BooleanOptionHandler.class, usage = "Displays this message")
private boolean m_displayHelp = false;
/**
* This enumeration handles all of the log level argument for the command line of
* this application.
*/
private enum LogLevel {
ALL {
@Override
public Level getLevel()
{
return Level.ALL;
}
},
CONFIG {
@Override
public Level getLevel()
{
return Level.CONFIG;
}
},
FINE {
@Override
public Level getLevel()
{
return Level.FINE;
}
},
FINER {
@Override
public Level getLevel()
{
return Level.FINER;
}
},
FINEST {
@Override
public Level getLevel()
{
return Level.FINEST;
}
},
INFO {
@Override
public Level getLevel()
{
return Level.INFO;
}
},
OFF {
@Override
public Level getLevel()
{
return Level.OFF;
}
},
SEVERE {
@Override
public Level getLevel()
{
return Level.SEVERE;
}
},
WARNING {
@Override
public Level getLevel()
{
return Level.WARNING;
}
};
public abstract Level getLevel();
}
@Option(name = "--logging_level",
usage = "The logging level (standard java.util.logging.Level values) for Compiler progress. " +
"Does not control errors or warnings for the JavaScript code under compilation")
private LogLevel m_loggingLevel = LogLevel.WARNING;
@Argument
private List<String> m_js = Lists.newArrayList();
@Option(name = "-funcs", required = true,
usage = "The file containing list of forbidden function names. You may specify multiple")
private List<String> m_forbidden = Lists.newArrayList();
@Option(name = "--charset",
usage = "Input and output charset for all files. By default, we " +
"accept UTF-8 as input and output US_ASCII")
private String m_charset = "UTF-8";
@Option(name = "--print_tree",
handler = BooleanOptionHandler.class,
usage = "Prints out the parse tree and exits")
private boolean m_printTree = false;
@Option(name = "--no_validate",
handler = BooleanOptionHandler.class,
usage = "Pass this argument to skip the pre-parse file validation step. This is faster, but won't " +
"provide good error messages if the input files are invalid JavaScript.")
private boolean m_preparse = true;
@Option(name = "--flagfile",
usage = "A file containing additional command-line options.")
private String m_flagFile = "";
private StringBuffer m_mainFiles = new StringBuffer();
/**
* Process the flags file and add the argument values to the current class.
*
* @param out the output stream for printing errors while parsing the arguments
*
* @exception CmdLineException
* if there's an error parsing the arguments
* @exception IOException
* if there is an exception reading the file
*/
private void processFlagFile(PrintStream out)
throws CmdLineException, IOException
{
if (m_flagFile == null || m_flagFile.trim().length() == 0) {
return;
}
List<String> argsInFile = Lists.newArrayList();
File flagFileInput = new File(m_flagFile);
String flags = FileUtils.readFileToString(flagFileInput, m_charset);
StringTokenizer tokenizer = new StringTokenizer(flags);
while (tokenizer.hasMoreTokens()) {
argsInFile.add(tokenizer.nextToken());
}
m_flagFile = "";
CmdLineParser parserFileArgs = new CmdLineParser(this);
parserFileArgs.parseArgument(argsInFile.toArray(new String[] {}));
// Currently we are not supporting this (prevent direct/indirect loops)
if (!m_flagFile.equals("")) {
out.println("ERROR - Arguments in the file cannot contain --flagfile option.");
}
}
private void readForbiddenFuncts(ForbiddenFunction ff)
throws IOException
{
for (String f : m_forbidden) {
File file = new File(f);
List<String> externs = FileUtils.readLines(file, m_charset);
for (String extern : externs) {
ff.addForbiddenFuncion(extern);
}
}
}
/**
* Add files for compilation.
*
* @param slim the compiler instance
* @param files the files to add
*
* @return true if the files were properly validated or false otherwise
* @exception IOException
* if there is an error reading the files
*/
private boolean addFiles(ForbiddenFunction slim, List<String> files)
throws IOException
{
ArrayList<File> readFiles = new ArrayList<File>();
for (String file : files) {
File f = new File(file);
if (readFiles.contains(f)) {
continue;
}
String contents = FileUtils.readFileToString(f, m_charset);
if (m_preparse) {
ErrorManager mgr = slim.validate(f.getAbsolutePath(), contents);
if (mgr.getErrorCount() != 0) {
mgr.generateReport();
return false;
}
}
m_mainFiles.append(contents + "\n");
ForbiddenFunction.getLogger().log(Level.INFO, "Adding main file: " + f.getAbsoluteFile());
slim.addSourceFile(new JSFile(f.getAbsolutePath(), contents));
}
return true;
}
/**
* Print the usage of this class.
*
* @param parser the parser of the command line arguments
*/
private static void printUsage(CmdLineParser parser)
{
System.out.println("java FFRunner [options...] arguments...\n");
// print the list of available options
parser.printUsage(System.out);
System.out.println();
}
private List<String> check()
throws IOException
{
ForbiddenFunction ff = new ForbiddenFunction();
readForbiddenFuncts(ff);
ff.setLoggingLevel(m_loggingLevel.getLevel());
ForbiddenFunction.getLogger().log(Level.INFO, "Compiling with character set " + m_charset);
ff.setCharset(m_charset);
if (!addFiles(ff, m_js)) {
return new ArrayList<String>();
}
return ff.check();
}
/**
* The main API entry point.
*
* @param args the arguments for this process
*
* @return a list containing any errors
*/
public static List<String> run(String[] args)
{
FFRunner runner = new FFRunner();
// parse the command line arguments and options
CmdLineParser parser = new CmdLineParser(runner);
parser.setUsageWidth(80); // width of the error display area
if (args.length == 0) {
printUsage(parser);
return new ArrayList<String>();
}
try {
parser.parseArgument(args);
} catch (CmdLineException e) {
System.out.println(e.getMessage() + '\n');
printUsage(parser);
return new ArrayList<String>();
}
try {
runner.processFlagFile(System.out);
if (runner.m_displayHelp) {
parser.printUsage(System.out);
return new ArrayList<String>();
}
return runner.check();
} catch (Exception e) {
e.printStackTrace();
return new ArrayList<String>();
}
}
/**
* The main entry point.
*
* @param args the arguments for this process
*/
public static void main(String[] args)
{
List<String> errors = run(args);
if (errors.size() > 0) {
System.out.println("There were forbidden functions.");
for (String err : errors) {
System.out.println(err);
}
}
}
}
| [
"zack@grossbart.com"
] | zack@grossbart.com |
b6a45457127d23937df28b1d093d3cfbb8c34444 | 25d4d4840df9391fca32e2f04e17d57355623b06 | /src/org/ctci/sixthedition/solutions/ch08RecursionAndDynamicProgramming/Q8_12_Eight_Queens/Question.java | 77af4d5ca234ca737f96b5694a49968c51b9bb6d | [] | no_license | pkabiraj/coding-practice | f99484d4095166fc52eea97ed79af75ff43bc54b | c473102d5b5286b083278f14d1a77bded58b0c25 | refs/heads/master | 2021-09-03T01:57:40.456914 | 2021-08-25T09:53:51 | 2021-08-25T09:53:51 | 240,745,131 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,862 | java | package org.ctci.sixthedition.solutions.ch08RecursionAndDynamicProgramming.Q8_12_Eight_Queens;
import java.util.ArrayList;
public class Question {
public static int GRID_SIZE = 8;
/* Check if (row1, column1) is a valid spot for a queen by checking if there
* is a queen in the same column or diagonal. We don't need to check it for queens
* in the same row because the calling placeQueen only attempts to place one queen at
* a time. We know this row is empty.
*/
public static boolean checkValid(Integer[] columns, int row1, int column1) {
for (int row2 = 0; row2 < row1; row2++) {
int column2 = columns[row2];
/* Check if (row2, column2) invalidates (row1, column1) as a queen spot. */
/* Check if rows have a queen in the same column */
if (column1 == column2) {
return false;
}
/* Check diagonals: if the distance between the columns equals the distance
* between the rows, then they’re in the same diagonal. */
int columnDistance = Math.abs(column2 - column1);
int rowDistance = row1 - row2; // row1 > row2, so no need to use absolute value
if (columnDistance == rowDistance) {
return false;
}
}
return true;
}
public static void placeQueens(int row, Integer[] columns, ArrayList<Integer[]> results) {
if (row == GRID_SIZE) { // Found valid placement
results.add(columns.clone());
} else {
for (int col = 0; col < GRID_SIZE; col++) {
if (checkValid(columns, row, col)) {
columns[row] = col; // Place queen
placeQueens(row + 1, columns, results);
}
}
}
}
public static void clear(Integer[] columns) {
for (int i = 0; i < GRID_SIZE; i++) {
columns[i] = -1;
}
}
public static void printBoard(Integer[] columns) {
drawLine();
for(int i = 0; i < GRID_SIZE; i++){
System.out.print("|");
for (int j = 0; j < GRID_SIZE; j++){
if (columns[i] == j) {
System.out.print("Q|");
} else {
System.out.print(" |");
}
}
System.out.print("\n");
drawLine();
}
System.out.println("");
}
private static void drawLine() {
StringBuilder line = new StringBuilder();
for (int i=0;i<GRID_SIZE*2+1;i++)
line.append('-');
System.out.println(line.toString());
}
public static void printBoards(ArrayList<Integer[]> boards) {
for (int i = 0; i < boards.size(); i++) {
Integer[] board = boards.get(i);
printBoard(board);
}
}
public static void main(String[] args) {
ArrayList<Integer[]> results = new ArrayList<Integer[]>();
Integer[] columns = new Integer[GRID_SIZE];
clear(columns);
placeQueens(0, columns, results);
printBoards(results);
System.out.println(results.size());
}
}
| [
"pkabiraj@vmware.com"
] | pkabiraj@vmware.com |
d8857c8ff6a59f69597521b73ccba74f897c306f | 455edcc9cb745c8743780bb189df3f95dff1d9c2 | /src/graficos/escribiendo_en_marco.java | c38fd8f0eff014009c6aba3ce714ddebee944d32 | [] | no_license | sebgam/Proyecto_sebas_1 | 397e743b968a965622660faf1965642440ff4674 | c8a1d2be11cf813fd64f3809d146f305a06931d6 | refs/heads/master | 2021-04-30T16:26:22.902217 | 2017-05-04T01:45:59 | 2017-05-04T01:45:59 | 80,037,419 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 682 | java | package graficos;
import javax.swing.*;
import java.awt.*;
public class escribiendo_en_marco {
public static void main(String[] args) {
// TODO Auto-generated method stub
marcoConTexto miMarco = new marcoConTexto();
miMarco.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}
class marcoConTexto extends JFrame{
public marcoConTexto(){
setVisible(true);
setSize(600,450);
setLocation(500,250);
setTitle("PRIMER TEXTO");
lamina miLamina= new lamina();
add(miLamina);
}
}
class lamina extends JPanel{
public void paintComponent(Graphics g){
super.paintComponent(g);
g.drawString("hola mundo", 100, 100);
}
} | [
"sebastiangamboa11@gmail.com"
] | sebastiangamboa11@gmail.com |
cf6538c1d1c3fbd7fcd637f1a2528ed6032860fa | 4627d514d6664526f58fbe3cac830a54679749cd | /results/randoop5/lang-org.apache.commons.lang3.text.translate.UnicodeEscaper-16/RegressionTest4.java | bb7dc01d37187a4af75fd8e27a2eb44d4d2368b5 | [] | no_license | STAMP-project/Cling-application | c624175a4aa24bb9b29b53f9b84c42a0f18631bd | 0ff4d7652b434cbfd9be8d8bb38cfc8d8eaa51b5 | refs/heads/master | 2022-07-27T09:30:16.423362 | 2022-07-19T12:01:46 | 2022-07-19T12:01:46 | 254,310,667 | 2 | 2 | null | 2021-07-12T12:29:50 | 2020-04-09T08:11:35 | null | UTF-8 | Java | false | false | 1,800,089 | java | import org.junit.FixMethodOrder;
import org.junit.Test;
import org.junit.runners.MethodSorters;
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class RegressionTest4 {
public static boolean debug = false;
@Test
public void test2001() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2001");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) 'a');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper4 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 100, (int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper6 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper9 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str11 = unicodeEscaper9.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str16 = unicodeEscaper14.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer22 = null;
int int23 = unicodeEscaper19.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer22);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper29 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray30 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper19, unicodeEscaper25, unicodeEscaper26, unicodeEscaper29 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper14.with(charSequenceTranslatorArray30);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator32 = unicodeEscaper9.with(charSequenceTranslatorArray30);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper6.with(charSequenceTranslatorArray30);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(10, 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper39 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray42 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper6, unicodeEscaper36, unicodeEscaper39, unicodeEscaper41 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator43 = unicodeEscaper4.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper1.with(charSequenceTranslatorArray42);
java.io.Writer writer46 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper1.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034", writer46);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertNotNull(unicodeEscaper4);
org.junit.Assert.assertNotNull(unicodeEscaper6);
org.junit.Assert.assertNotNull(unicodeEscaper9);
org.junit.Assert.assertEquals("'" + str11 + "' != '" + "hi!" + "'", str11, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper14);
org.junit.Assert.assertEquals("'" + str16 + "' != '" + "hi!" + "'", str16, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper19);
org.junit.Assert.assertTrue("'" + int23 + "' != '" + 0 + "'", int23 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertNotNull(unicodeEscaper29);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
org.junit.Assert.assertNotNull(charSequenceTranslator32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
org.junit.Assert.assertNotNull(unicodeEscaper36);
org.junit.Assert.assertNotNull(unicodeEscaper39);
org.junit.Assert.assertNotNull(unicodeEscaper41);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray42);
org.junit.Assert.assertNotNull(charSequenceTranslator43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
}
@Test
public void test2002() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2002");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (short) 1);
java.io.Writer writer4 = null;
int int5 = unicodeEscaper1.translate((java.lang.CharSequence) "hi!", (int) (short) 0, writer4);
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertTrue("'" + int5 + "' != '" + 0 + "'", int5 == 0);
}
@Test
public void test2003() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2003");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "hi!");
java.lang.String str6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0041");
java.lang.String str8 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
java.lang.String str10 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0038\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0039\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0032\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "hi!" + "'", str4, "hi!");
org.junit.Assert.assertEquals("'" + str6 + "' != '" + "\\u0041" + "'", str6, "\\u0041");
org.junit.Assert.assertEquals("'" + str8 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034" + "'", str8, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
org.junit.Assert.assertEquals("'" + str10 + "' != '" + "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0038\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0039\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0032\\u0031" + "'", str10, "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0038\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0039\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0032\\u0031");
}
@Test
public void test2004() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2004");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, (int) (short) -1);
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2005() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2005");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper6 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper9 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str11 = unicodeEscaper9.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str16 = unicodeEscaper14.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer22 = null;
int int23 = unicodeEscaper19.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer22);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper29 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray30 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper19, unicodeEscaper25, unicodeEscaper26, unicodeEscaper29 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper14.with(charSequenceTranslatorArray30);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator32 = unicodeEscaper9.with(charSequenceTranslatorArray30);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper6.with(charSequenceTranslatorArray30);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer38 = null;
boolean boolean39 = unicodeEscaper36.translate((int) (byte) 100, writer38);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper42 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper45 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str47 = unicodeEscaper45.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper50 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer53 = null;
int int54 = unicodeEscaper50.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer53);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper56 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper60 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray61 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper50, unicodeEscaper56, unicodeEscaper57, unicodeEscaper60 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator62 = unicodeEscaper45.with(charSequenceTranslatorArray61);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator63 = unicodeEscaper42.with(charSequenceTranslatorArray61);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator64 = unicodeEscaper36.with(charSequenceTranslatorArray61);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator65 = charSequenceTranslator33.with(charSequenceTranslatorArray61);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator66 = unicodeEscaper2.with(charSequenceTranslatorArray61);
java.io.Writer writer68 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0037\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030", writer68);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "hi!" + "'", str4, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper6);
org.junit.Assert.assertNotNull(unicodeEscaper9);
org.junit.Assert.assertEquals("'" + str11 + "' != '" + "hi!" + "'", str11, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper14);
org.junit.Assert.assertEquals("'" + str16 + "' != '" + "hi!" + "'", str16, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper19);
org.junit.Assert.assertTrue("'" + int23 + "' != '" + 0 + "'", int23 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertNotNull(unicodeEscaper29);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
org.junit.Assert.assertNotNull(charSequenceTranslator32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
org.junit.Assert.assertNotNull(unicodeEscaper36);
org.junit.Assert.assertTrue("'" + boolean39 + "' != '" + false + "'", boolean39 == false);
org.junit.Assert.assertNotNull(unicodeEscaper42);
org.junit.Assert.assertNotNull(unicodeEscaper45);
org.junit.Assert.assertEquals("'" + str47 + "' != '" + "hi!" + "'", str47, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper50);
org.junit.Assert.assertTrue("'" + int54 + "' != '" + 0 + "'", int54 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper56);
org.junit.Assert.assertNotNull(unicodeEscaper60);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray61);
org.junit.Assert.assertNotNull(charSequenceTranslator62);
org.junit.Assert.assertNotNull(charSequenceTranslator63);
org.junit.Assert.assertNotNull(charSequenceTranslator64);
org.junit.Assert.assertNotNull(charSequenceTranslator65);
org.junit.Assert.assertNotNull(charSequenceTranslator66);
}
@Test
public void test2006() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2006");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) '#', (-1));
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper4 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) 10);
java.io.Writer writer6 = null;
boolean boolean7 = unicodeEscaper4.translate((int) (byte) 100, writer6);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper9 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 1, (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer17 = null;
boolean boolean18 = unicodeEscaper15.translate((int) (short) 0, writer17);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str23 = unicodeEscaper21.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str28 = unicodeEscaper26.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer34 = null;
int int35 = unicodeEscaper31.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer34);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper38 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray42 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper31, unicodeEscaper37, unicodeEscaper38, unicodeEscaper41 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator43 = unicodeEscaper26.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper21.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator45 = unicodeEscaper15.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper48 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) -1, (int) (byte) 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper51 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 100, (int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper53 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) ' ');
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray54 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper9, unicodeEscaper12, charSequenceTranslator45, unicodeEscaper48, unicodeEscaper51, unicodeEscaper53 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator55 = unicodeEscaper4.with(charSequenceTranslatorArray54);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator56 = unicodeEscaper2.with(charSequenceTranslatorArray54);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray57 = null;
// The following exception was thrown during execution in test generation
try {
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator58 = unicodeEscaper2.with(charSequenceTranslatorArray57);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper4);
org.junit.Assert.assertTrue("'" + boolean7 + "' != '" + false + "'", boolean7 == false);
org.junit.Assert.assertNotNull(unicodeEscaper9);
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertTrue("'" + boolean18 + "' != '" + false + "'", boolean18 == false);
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertEquals("'" + str23 + "' != '" + "hi!" + "'", str23, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper26);
org.junit.Assert.assertEquals("'" + str28 + "' != '" + "hi!" + "'", str28, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertTrue("'" + int35 + "' != '" + 0 + "'", int35 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper37);
org.junit.Assert.assertNotNull(unicodeEscaper41);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray42);
org.junit.Assert.assertNotNull(charSequenceTranslator43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertNotNull(charSequenceTranslator45);
org.junit.Assert.assertNotNull(unicodeEscaper48);
org.junit.Assert.assertNotNull(unicodeEscaper51);
org.junit.Assert.assertNotNull(unicodeEscaper53);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray54);
org.junit.Assert.assertNotNull(charSequenceTranslator55);
org.junit.Assert.assertNotNull(charSequenceTranslator56);
}
@Test
public void test2007() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2007");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, (int) (byte) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(1, (int) (short) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 10, (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) -1, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 10, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer21 = null;
boolean boolean22 = unicodeEscaper19.translate((int) (short) 0, writer21);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper23 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray26 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper19, unicodeEscaper23, unicodeEscaper25 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator27 = unicodeEscaper16.with(charSequenceTranslatorArray26);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator28 = unicodeEscaper14.with(charSequenceTranslatorArray26);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator29 = unicodeEscaper11.with(charSequenceTranslatorArray26);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) -1, 0);
java.lang.String str34 = unicodeEscaper32.translate((java.lang.CharSequence) "1");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str39 = unicodeEscaper37.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper42 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str44 = unicodeEscaper42.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper47 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer50 = null;
int int51 = unicodeEscaper47.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer50);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper53 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper54 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray58 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper47, unicodeEscaper53, unicodeEscaper54, unicodeEscaper57 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator59 = unicodeEscaper42.with(charSequenceTranslatorArray58);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator60 = unicodeEscaper37.with(charSequenceTranslatorArray58);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper63 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer66 = null;
int int67 = unicodeEscaper63.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer66);
java.io.Writer writer69 = null;
boolean boolean70 = unicodeEscaper63.translate((int) (byte) -1, writer69);
java.lang.String str72 = unicodeEscaper63.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper75 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str77 = unicodeEscaper75.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray78 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper63, unicodeEscaper75 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator79 = unicodeEscaper37.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator80 = unicodeEscaper32.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator81 = charSequenceTranslator29.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator82 = unicodeEscaper8.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator83 = unicodeEscaper5.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator84 = unicodeEscaper2.with(charSequenceTranslatorArray78);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertNotNull(unicodeEscaper14);
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertNotNull(unicodeEscaper19);
org.junit.Assert.assertTrue("'" + boolean22 + "' != '" + false + "'", boolean22 == false);
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray26);
org.junit.Assert.assertNotNull(charSequenceTranslator27);
org.junit.Assert.assertNotNull(charSequenceTranslator28);
org.junit.Assert.assertNotNull(charSequenceTranslator29);
org.junit.Assert.assertNotNull(unicodeEscaper32);
org.junit.Assert.assertEquals("'" + str34 + "' != '" + "\\u0031" + "'", str34, "\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper37);
org.junit.Assert.assertEquals("'" + str39 + "' != '" + "hi!" + "'", str39, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper42);
org.junit.Assert.assertEquals("'" + str44 + "' != '" + "hi!" + "'", str44, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper47);
org.junit.Assert.assertTrue("'" + int51 + "' != '" + 0 + "'", int51 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper53);
org.junit.Assert.assertNotNull(unicodeEscaper57);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray58);
org.junit.Assert.assertNotNull(charSequenceTranslator59);
org.junit.Assert.assertNotNull(charSequenceTranslator60);
org.junit.Assert.assertNotNull(unicodeEscaper63);
org.junit.Assert.assertTrue("'" + int67 + "' != '" + 0 + "'", int67 == 0);
org.junit.Assert.assertTrue("'" + boolean70 + "' != '" + false + "'", boolean70 == false);
org.junit.Assert.assertEquals("'" + str72 + "' != '" + "0" + "'", str72, "0");
org.junit.Assert.assertNotNull(unicodeEscaper75);
org.junit.Assert.assertEquals("'" + str77 + "' != '" + "hi!" + "'", str77, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray78);
org.junit.Assert.assertNotNull(charSequenceTranslator79);
org.junit.Assert.assertNotNull(charSequenceTranslator80);
org.junit.Assert.assertNotNull(charSequenceTranslator81);
org.junit.Assert.assertNotNull(charSequenceTranslator82);
org.junit.Assert.assertNotNull(charSequenceTranslator83);
org.junit.Assert.assertNotNull(charSequenceTranslator84);
}
@Test
public void test2008() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2008");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 1, (int) ' ');
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (short) 100, writer4);
java.lang.String str7 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
java.lang.Class<?> wildcardClass8 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031" + "'", str7, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
org.junit.Assert.assertNotNull(wildcardClass8);
}
@Test
public void test2009() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2009");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(1, (-1));
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper4 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer9 = null;
boolean boolean10 = unicodeEscaper7.translate((int) (short) 0, writer9);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray14 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper7, unicodeEscaper11, unicodeEscaper13 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator15 = unicodeEscaper4.with(charSequenceTranslatorArray14);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator16 = unicodeEscaper2.with(charSequenceTranslatorArray14);
java.io.Writer writer19 = null;
// The following exception was thrown during execution in test generation
try {
int int20 = unicodeEscaper2.translate((java.lang.CharSequence) "34", (int) '4', writer19);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: 52");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper4);
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertTrue("'" + boolean10 + "' != '" + false + "'", boolean10 == false);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray14);
org.junit.Assert.assertNotNull(charSequenceTranslator15);
org.junit.Assert.assertNotNull(charSequenceTranslator16);
}
@Test
public void test2010() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2010");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) -1, (int) (short) 1);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (byte) 1, writer4);
java.io.Writer writer7 = null;
boolean boolean8 = unicodeEscaper2.translate((-1), writer7);
java.io.Writer writer11 = null;
// The following exception was thrown during execution in test generation
try {
int int12 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u\\u0030\\u003075\\u0030\\u00305C\\\\u\\u0030\\u003075\\u0030\\u003075\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0030\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0030\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0033\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0032\\\\u\\u0030\\u003075\\u0030\\u00305C\\\\u\\u0030\\u003075\\u0030\\u003075\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0030\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0030\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0033\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0033", 10, writer11);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertTrue("'" + boolean8 + "' != '" + false + "'", boolean8 == false);
}
@Test
public void test2011() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2011");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0030");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 0, (-1));
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str21 = unicodeEscaper19.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer27 = null;
int int28 = unicodeEscaper24.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer27);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper34 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray35 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper24, unicodeEscaper30, unicodeEscaper31, unicodeEscaper34 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator36 = unicodeEscaper19.with(charSequenceTranslatorArray35);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator37 = unicodeEscaper16.with(charSequenceTranslatorArray35);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator38 = unicodeEscaper13.with(charSequenceTranslatorArray35);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator39 = unicodeEscaper10.with(charSequenceTranslatorArray35);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator40 = unicodeEscaper7.with(charSequenceTranslatorArray35);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator41 = unicodeEscaper2.with(charSequenceTranslatorArray35);
java.io.Writer writer44 = null;
// The following exception was thrown during execution in test generation
try {
int int45 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750032\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033", (int) (short) 100, writer44);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030" + "'", str4, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertNotNull(unicodeEscaper19);
org.junit.Assert.assertEquals("'" + str21 + "' != '" + "hi!" + "'", str21, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertTrue("'" + int28 + "' != '" + 0 + "'", int28 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertNotNull(unicodeEscaper34);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray35);
org.junit.Assert.assertNotNull(charSequenceTranslator36);
org.junit.Assert.assertNotNull(charSequenceTranslator37);
org.junit.Assert.assertNotNull(charSequenceTranslator38);
org.junit.Assert.assertNotNull(charSequenceTranslator39);
org.junit.Assert.assertNotNull(charSequenceTranslator40);
org.junit.Assert.assertNotNull(charSequenceTranslator41);
}
@Test
public void test2012() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2012");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, 1);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
java.lang.String str6 = unicodeEscaper2.translate((java.lang.CharSequence) "64");
java.io.Writer writer8 = null;
boolean boolean9 = unicodeEscaper2.translate(100, writer8);
java.io.Writer writer11 = null;
boolean boolean12 = unicodeEscaper2.translate((-1), writer11);
java.io.Writer writer14 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030", writer14);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030" + "'", str4, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
org.junit.Assert.assertEquals("'" + str6 + "' != '" + "64" + "'", str6, "64");
org.junit.Assert.assertTrue("'" + boolean9 + "' != '" + false + "'", boolean9 == false);
org.junit.Assert.assertTrue("'" + boolean12 + "' != '" + false + "'", boolean12 == false);
}
@Test
public void test2013() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2013");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(1, 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((-1), (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str10 = unicodeEscaper8.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str15 = unicodeEscaper13.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer21 = null;
int int22 = unicodeEscaper18.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer21);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray29 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper18, unicodeEscaper24, unicodeEscaper25, unicodeEscaper28 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator30 = unicodeEscaper13.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper8.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper34 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer37 = null;
int int38 = unicodeEscaper34.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer37);
java.io.Writer writer40 = null;
boolean boolean41 = unicodeEscaper34.translate((int) (byte) -1, writer40);
java.lang.String str43 = unicodeEscaper34.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper46 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str48 = unicodeEscaper46.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray49 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper34, unicodeEscaper46 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator50 = unicodeEscaper8.with(charSequenceTranslatorArray49);
java.lang.String str52 = unicodeEscaper8.translate((java.lang.CharSequence) "");
java.lang.String str54 = unicodeEscaper8.translate((java.lang.CharSequence) "\\u0068\\u0069\\u0021");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper60 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(10, 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper63 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper66 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper69 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str71 = unicodeEscaper69.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper74 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer77 = null;
int int78 = unicodeEscaper74.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer77);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper80 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper81 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper84 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray85 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper74, unicodeEscaper80, unicodeEscaper81, unicodeEscaper84 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator86 = unicodeEscaper69.with(charSequenceTranslatorArray85);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator87 = unicodeEscaper66.with(charSequenceTranslatorArray85);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator88 = unicodeEscaper63.with(charSequenceTranslatorArray85);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator89 = unicodeEscaper60.with(charSequenceTranslatorArray85);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator90 = unicodeEscaper57.with(charSequenceTranslatorArray85);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator91 = unicodeEscaper8.with(charSequenceTranslatorArray85);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator92 = unicodeEscaper5.with(charSequenceTranslatorArray85);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator93 = unicodeEscaper2.with(charSequenceTranslatorArray85);
java.io.Writer writer96 = null;
// The following exception was thrown during execution in test generation
try {
int int97 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030", (int) (byte) 10, writer96);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertEquals("'" + str10 + "' != '" + "hi!" + "'", str10, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertEquals("'" + str15 + "' != '" + "hi!" + "'", str15, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertTrue("'" + int22 + "' != '" + 0 + "'", int22 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray29);
org.junit.Assert.assertNotNull(charSequenceTranslator30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
org.junit.Assert.assertNotNull(unicodeEscaper34);
org.junit.Assert.assertTrue("'" + int38 + "' != '" + 0 + "'", int38 == 0);
org.junit.Assert.assertTrue("'" + boolean41 + "' != '" + false + "'", boolean41 == false);
org.junit.Assert.assertEquals("'" + str43 + "' != '" + "0" + "'", str43, "0");
org.junit.Assert.assertNotNull(unicodeEscaper46);
org.junit.Assert.assertEquals("'" + str48 + "' != '" + "hi!" + "'", str48, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray49);
org.junit.Assert.assertNotNull(charSequenceTranslator50);
org.junit.Assert.assertEquals("'" + str52 + "' != '" + "" + "'", str52, "");
org.junit.Assert.assertEquals("'" + str54 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str54, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper57);
org.junit.Assert.assertNotNull(unicodeEscaper60);
org.junit.Assert.assertNotNull(unicodeEscaper63);
org.junit.Assert.assertNotNull(unicodeEscaper66);
org.junit.Assert.assertNotNull(unicodeEscaper69);
org.junit.Assert.assertEquals("'" + str71 + "' != '" + "hi!" + "'", str71, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper74);
org.junit.Assert.assertTrue("'" + int78 + "' != '" + 0 + "'", int78 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper80);
org.junit.Assert.assertNotNull(unicodeEscaper84);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray85);
org.junit.Assert.assertNotNull(charSequenceTranslator86);
org.junit.Assert.assertNotNull(charSequenceTranslator87);
org.junit.Assert.assertNotNull(charSequenceTranslator88);
org.junit.Assert.assertNotNull(charSequenceTranslator89);
org.junit.Assert.assertNotNull(charSequenceTranslator90);
org.junit.Assert.assertNotNull(charSequenceTranslator91);
org.junit.Assert.assertNotNull(charSequenceTranslator92);
org.junit.Assert.assertNotNull(charSequenceTranslator93);
}
@Test
public void test2014() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2014");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) -1);
java.io.Writer writer4 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750031", writer4);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2015() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2015");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(1, (int) (short) 100);
java.lang.Class<?> wildcardClass3 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(wildcardClass3);
}
@Test
public void test2016() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2016");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 1, (int) ' ');
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (short) 100, writer4);
java.io.Writer writer7 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean8 = unicodeEscaper2.translate(10, writer7);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
}
@Test
public void test2017() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2017");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '#', (int) (short) 1);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
java.lang.String str6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750037\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030");
java.lang.String str8 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
java.io.Writer writer10 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750031", writer10);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034" + "'", str4, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
org.junit.Assert.assertEquals("'" + str6 + "' != '" + "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750037\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030" + "'", str6, "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750037\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030");
org.junit.Assert.assertEquals("'" + str8 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030" + "'", str8, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
}
@Test
public void test2018() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2018");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(0, (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(0, (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 100);
java.io.Writer writer9 = null;
boolean boolean10 = unicodeEscaper7.translate((int) (short) 0, writer9);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str15 = unicodeEscaper13.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer21 = null;
int int22 = unicodeEscaper18.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer21);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray29 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper18, unicodeEscaper24, unicodeEscaper25, unicodeEscaper28 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator30 = unicodeEscaper13.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper33 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str35 = unicodeEscaper33.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper38 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str40 = unicodeEscaper38.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper43 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer46 = null;
int int47 = unicodeEscaper43.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer46);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper49 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper50 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper53 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray54 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper43, unicodeEscaper49, unicodeEscaper50, unicodeEscaper53 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator55 = unicodeEscaper38.with(charSequenceTranslatorArray54);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator56 = unicodeEscaper33.with(charSequenceTranslatorArray54);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator57 = charSequenceTranslator30.with(charSequenceTranslatorArray54);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator58 = unicodeEscaper7.with(charSequenceTranslatorArray54);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator59 = unicodeEscaper5.with(charSequenceTranslatorArray54);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper62 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, 1);
java.lang.String str64 = unicodeEscaper62.translate((java.lang.CharSequence) "FFFFFFFF");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper67 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str69 = unicodeEscaper67.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper72 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str74 = unicodeEscaper72.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper77 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer80 = null;
int int81 = unicodeEscaper77.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer80);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper83 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper84 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper87 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray88 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper77, unicodeEscaper83, unicodeEscaper84, unicodeEscaper87 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator89 = unicodeEscaper72.with(charSequenceTranslatorArray88);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator90 = unicodeEscaper67.with(charSequenceTranslatorArray88);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator91 = unicodeEscaper62.with(charSequenceTranslatorArray88);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator92 = unicodeEscaper5.with(charSequenceTranslatorArray88);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator93 = unicodeEscaper2.with(charSequenceTranslatorArray88);
java.lang.Class<?> wildcardClass94 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertTrue("'" + boolean10 + "' != '" + false + "'", boolean10 == false);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertEquals("'" + str15 + "' != '" + "hi!" + "'", str15, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertTrue("'" + int22 + "' != '" + 0 + "'", int22 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray29);
org.junit.Assert.assertNotNull(charSequenceTranslator30);
org.junit.Assert.assertNotNull(unicodeEscaper33);
org.junit.Assert.assertEquals("'" + str35 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str35, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper38);
org.junit.Assert.assertEquals("'" + str40 + "' != '" + "hi!" + "'", str40, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper43);
org.junit.Assert.assertTrue("'" + int47 + "' != '" + 0 + "'", int47 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper49);
org.junit.Assert.assertNotNull(unicodeEscaper53);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray54);
org.junit.Assert.assertNotNull(charSequenceTranslator55);
org.junit.Assert.assertNotNull(charSequenceTranslator56);
org.junit.Assert.assertNotNull(charSequenceTranslator57);
org.junit.Assert.assertNotNull(charSequenceTranslator58);
org.junit.Assert.assertNotNull(charSequenceTranslator59);
org.junit.Assert.assertNotNull(unicodeEscaper62);
org.junit.Assert.assertEquals("'" + str64 + "' != '" + "FFFFFFFF" + "'", str64, "FFFFFFFF");
org.junit.Assert.assertNotNull(unicodeEscaper67);
org.junit.Assert.assertEquals("'" + str69 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str69, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper72);
org.junit.Assert.assertEquals("'" + str74 + "' != '" + "hi!" + "'", str74, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper77);
org.junit.Assert.assertTrue("'" + int81 + "' != '" + 0 + "'", int81 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper83);
org.junit.Assert.assertNotNull(unicodeEscaper87);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray88);
org.junit.Assert.assertNotNull(charSequenceTranslator89);
org.junit.Assert.assertNotNull(charSequenceTranslator90);
org.junit.Assert.assertNotNull(charSequenceTranslator91);
org.junit.Assert.assertNotNull(charSequenceTranslator92);
org.junit.Assert.assertNotNull(charSequenceTranslator93);
org.junit.Assert.assertNotNull(wildcardClass94);
}
@Test
public void test2019() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2019");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 0, 0);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) ' ', writer4);
java.io.Writer writer7 = null;
boolean boolean8 = unicodeEscaper2.translate(100, writer7);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertTrue("'" + boolean8 + "' != '" + false + "'", boolean8 == false);
}
@Test
public void test2020() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2020");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper4 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str9 = unicodeEscaper7.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str14 = unicodeEscaper12.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer20 = null;
int int21 = unicodeEscaper17.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer20);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper23 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray28 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper17, unicodeEscaper23, unicodeEscaper24, unicodeEscaper27 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator29 = unicodeEscaper12.with(charSequenceTranslatorArray28);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator30 = unicodeEscaper7.with(charSequenceTranslatorArray28);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper4.with(charSequenceTranslatorArray28);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator32 = unicodeEscaper2.with(charSequenceTranslatorArray28);
java.io.Writer writer34 = null;
// The following exception was thrown during execution in test generation
try {
charSequenceTranslator32.translate((java.lang.CharSequence) "\\\\u\\u0030\\u003075\\u0030\\u00305C\\\\u\\u0030\\u003075\\u0030\\u003075\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0030\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0030\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0033\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0032\\\\u\\u0030\\u003075\\u0030\\u00305C\\\\u\\u0030\\u003075\\u0030\\u003075\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0030\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0030\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0033\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0033", writer34);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper4);
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertEquals("'" + str9 + "' != '" + "hi!" + "'", str9, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertEquals("'" + str14 + "' != '" + "hi!" + "'", str14, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertTrue("'" + int21 + "' != '" + 0 + "'", int21 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper23);
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray28);
org.junit.Assert.assertNotNull(charSequenceTranslator29);
org.junit.Assert.assertNotNull(charSequenceTranslator30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
org.junit.Assert.assertNotNull(charSequenceTranslator32);
}
@Test
public void test2021() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2021");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper4 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 100, (int) (short) 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper6 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above(100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper9 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str14 = unicodeEscaper12.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str19 = unicodeEscaper17.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer25 = null;
int int26 = unicodeEscaper22.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer25);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper29 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray33 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper22, unicodeEscaper28, unicodeEscaper29, unicodeEscaper32 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator34 = unicodeEscaper17.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator35 = unicodeEscaper12.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator36 = unicodeEscaper9.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper39 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str41 = unicodeEscaper39.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper44 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer47 = null;
int int48 = unicodeEscaper44.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer47);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper50 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper51 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper54 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray55 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper44, unicodeEscaper50, unicodeEscaper51, unicodeEscaper54 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator56 = unicodeEscaper39.with(charSequenceTranslatorArray55);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper59 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str61 = unicodeEscaper59.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper64 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str66 = unicodeEscaper64.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper69 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer72 = null;
int int73 = unicodeEscaper69.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer72);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper75 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper76 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper79 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray80 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper69, unicodeEscaper75, unicodeEscaper76, unicodeEscaper79 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator81 = unicodeEscaper64.with(charSequenceTranslatorArray80);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator82 = unicodeEscaper59.with(charSequenceTranslatorArray80);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator83 = charSequenceTranslator56.with(charSequenceTranslatorArray80);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator84 = unicodeEscaper9.with(charSequenceTranslatorArray80);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator85 = unicodeEscaper6.with(charSequenceTranslatorArray80);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator86 = unicodeEscaper4.with(charSequenceTranslatorArray80);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator87 = unicodeEscaper1.with(charSequenceTranslatorArray80);
java.io.Writer writer89 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper1.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031", writer89);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertNotNull(unicodeEscaper4);
org.junit.Assert.assertNotNull(unicodeEscaper6);
org.junit.Assert.assertNotNull(unicodeEscaper9);
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertEquals("'" + str14 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str14, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertEquals("'" + str19 + "' != '" + "hi!" + "'", str19, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertTrue("'" + int26 + "' != '" + 0 + "'", int26 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(unicodeEscaper32);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray33);
org.junit.Assert.assertNotNull(charSequenceTranslator34);
org.junit.Assert.assertNotNull(charSequenceTranslator35);
org.junit.Assert.assertNotNull(charSequenceTranslator36);
org.junit.Assert.assertNotNull(unicodeEscaper39);
org.junit.Assert.assertEquals("'" + str41 + "' != '" + "hi!" + "'", str41, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper44);
org.junit.Assert.assertTrue("'" + int48 + "' != '" + 0 + "'", int48 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper50);
org.junit.Assert.assertNotNull(unicodeEscaper54);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray55);
org.junit.Assert.assertNotNull(charSequenceTranslator56);
org.junit.Assert.assertNotNull(unicodeEscaper59);
org.junit.Assert.assertEquals("'" + str61 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str61, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper64);
org.junit.Assert.assertEquals("'" + str66 + "' != '" + "hi!" + "'", str66, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper69);
org.junit.Assert.assertTrue("'" + int73 + "' != '" + 0 + "'", int73 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper75);
org.junit.Assert.assertNotNull(unicodeEscaper79);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray80);
org.junit.Assert.assertNotNull(charSequenceTranslator81);
org.junit.Assert.assertNotNull(charSequenceTranslator82);
org.junit.Assert.assertNotNull(charSequenceTranslator83);
org.junit.Assert.assertNotNull(charSequenceTranslator84);
org.junit.Assert.assertNotNull(charSequenceTranslator85);
org.junit.Assert.assertNotNull(charSequenceTranslator86);
org.junit.Assert.assertNotNull(charSequenceTranslator87);
}
@Test
public void test2022() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2022");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str9 = unicodeEscaper7.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer15 = null;
int int16 = unicodeEscaper12.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer15);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray23 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper12, unicodeEscaper18, unicodeEscaper19, unicodeEscaper22 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator24 = unicodeEscaper7.with(charSequenceTranslatorArray23);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator25 = unicodeEscaper2.with(charSequenceTranslatorArray23);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer31 = null;
int int32 = unicodeEscaper28.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer31);
java.io.Writer writer34 = null;
boolean boolean35 = unicodeEscaper28.translate((int) (byte) -1, writer34);
java.lang.String str37 = unicodeEscaper28.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str42 = unicodeEscaper40.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray43 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper28, unicodeEscaper40 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper2.with(charSequenceTranslatorArray43);
java.lang.String str46 = unicodeEscaper2.translate((java.lang.CharSequence) "");
java.lang.String str48 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0068\\u0069\\u0021");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper51 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper54 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(10, 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper60 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper63 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str65 = unicodeEscaper63.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper68 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer71 = null;
int int72 = unicodeEscaper68.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer71);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper74 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper75 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper78 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray79 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper68, unicodeEscaper74, unicodeEscaper75, unicodeEscaper78 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator80 = unicodeEscaper63.with(charSequenceTranslatorArray79);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator81 = unicodeEscaper60.with(charSequenceTranslatorArray79);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator82 = unicodeEscaper57.with(charSequenceTranslatorArray79);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator83 = unicodeEscaper54.with(charSequenceTranslatorArray79);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator84 = unicodeEscaper51.with(charSequenceTranslatorArray79);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator85 = unicodeEscaper2.with(charSequenceTranslatorArray79);
java.lang.Class<?> wildcardClass86 = charSequenceTranslatorArray79.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "hi!" + "'", str4, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertEquals("'" + str9 + "' != '" + "hi!" + "'", str9, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertTrue("'" + int16 + "' != '" + 0 + "'", int16 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray23);
org.junit.Assert.assertNotNull(charSequenceTranslator24);
org.junit.Assert.assertNotNull(charSequenceTranslator25);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertTrue("'" + int32 + "' != '" + 0 + "'", int32 == 0);
org.junit.Assert.assertTrue("'" + boolean35 + "' != '" + false + "'", boolean35 == false);
org.junit.Assert.assertEquals("'" + str37 + "' != '" + "0" + "'", str37, "0");
org.junit.Assert.assertNotNull(unicodeEscaper40);
org.junit.Assert.assertEquals("'" + str42 + "' != '" + "hi!" + "'", str42, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertEquals("'" + str46 + "' != '" + "" + "'", str46, "");
org.junit.Assert.assertEquals("'" + str48 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str48, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper51);
org.junit.Assert.assertNotNull(unicodeEscaper54);
org.junit.Assert.assertNotNull(unicodeEscaper57);
org.junit.Assert.assertNotNull(unicodeEscaper60);
org.junit.Assert.assertNotNull(unicodeEscaper63);
org.junit.Assert.assertEquals("'" + str65 + "' != '" + "hi!" + "'", str65, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper68);
org.junit.Assert.assertTrue("'" + int72 + "' != '" + 0 + "'", int72 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper74);
org.junit.Assert.assertNotNull(unicodeEscaper78);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray79);
org.junit.Assert.assertNotNull(charSequenceTranslator80);
org.junit.Assert.assertNotNull(charSequenceTranslator81);
org.junit.Assert.assertNotNull(charSequenceTranslator82);
org.junit.Assert.assertNotNull(charSequenceTranslator83);
org.junit.Assert.assertNotNull(charSequenceTranslator84);
org.junit.Assert.assertNotNull(charSequenceTranslator85);
org.junit.Assert.assertNotNull(wildcardClass86);
}
@Test
public void test2023() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2023");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer5);
java.io.Writer writer8 = null;
boolean boolean9 = unicodeEscaper2.translate((-1), writer8);
java.io.Writer writer11 = null;
boolean boolean12 = unicodeEscaper2.translate((int) 'a', writer11);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
org.junit.Assert.assertTrue("'" + boolean9 + "' != '" + false + "'", boolean9 == false);
org.junit.Assert.assertTrue("'" + boolean12 + "' != '" + false + "'", boolean12 == false);
}
@Test
public void test2024() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2024");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(1, (-1));
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (short) 10, writer4);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) 'a', (int) 'a');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str13 = unicodeEscaper11.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str18 = unicodeEscaper16.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer24 = null;
int int25 = unicodeEscaper21.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer24);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray32 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper21, unicodeEscaper27, unicodeEscaper28, unicodeEscaper31 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper16.with(charSequenceTranslatorArray32);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator34 = unicodeEscaper11.with(charSequenceTranslatorArray32);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper39 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer41 = null;
boolean boolean42 = unicodeEscaper39.translate((int) (short) 0, writer41);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper43 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper45 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray46 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper39, unicodeEscaper43, unicodeEscaper45 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator47 = unicodeEscaper36.with(charSequenceTranslatorArray46);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator48 = charSequenceTranslator34.with(charSequenceTranslatorArray46);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator49 = unicodeEscaper8.with(charSequenceTranslatorArray46);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator50 = unicodeEscaper2.with(charSequenceTranslatorArray46);
java.io.Writer writer52 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031", writer52);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertEquals("'" + str13 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str13, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertEquals("'" + str18 + "' != '" + "hi!" + "'", str18, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertTrue("'" + int25 + "' != '" + 0 + "'", int25 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
org.junit.Assert.assertNotNull(charSequenceTranslator34);
org.junit.Assert.assertNotNull(unicodeEscaper36);
org.junit.Assert.assertNotNull(unicodeEscaper39);
org.junit.Assert.assertTrue("'" + boolean42 + "' != '" + false + "'", boolean42 == false);
org.junit.Assert.assertNotNull(unicodeEscaper45);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray46);
org.junit.Assert.assertNotNull(charSequenceTranslator47);
org.junit.Assert.assertNotNull(charSequenceTranslator48);
org.junit.Assert.assertNotNull(charSequenceTranslator49);
org.junit.Assert.assertNotNull(charSequenceTranslator50);
}
@Test
public void test2025() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2025");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '#', (int) (short) 100);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((-1), writer4);
java.io.Writer writer8 = null;
// The following exception was thrown during execution in test generation
try {
int int9 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0032\\u0030", (int) (byte) 0, writer8);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
}
@Test
public void test2026() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2026");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) -1, (int) 'a');
java.io.Writer writer5 = null;
// The following exception was thrown during execution in test generation
try {
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u\\u0030\\u003075\\u0030\\u00305C\\\\u\\u0030\\u003075\\u0030\\u003075\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0030\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0030\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0033\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0032\\\\u\\u0030\\u003075\\u0030\\u00305C\\\\u\\u0030\\u003075\\u0030\\u003075\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0030\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0030\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0033\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0033", (int) (byte) -1, writer5);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: -1");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2027() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2027");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) ' ', (int) ' ');
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (short) 0, writer4);
java.io.Writer writer7 = null;
boolean boolean8 = unicodeEscaper2.translate((int) '4', writer7);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertTrue("'" + boolean8 + "' != '" + false + "'", boolean8 == false);
}
@Test
public void test2028() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2028");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer10 = null;
int int11 = unicodeEscaper7.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray18 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper7, unicodeEscaper13, unicodeEscaper14, unicodeEscaper17 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator19 = unicodeEscaper2.with(charSequenceTranslatorArray18);
java.lang.String str21 = unicodeEscaper2.translate((java.lang.CharSequence) "");
java.lang.String str23 = unicodeEscaper2.translate((java.lang.CharSequence) "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "hi!" + "'", str4, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertTrue("'" + int11 + "' != '" + 0 + "'", int11 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray18);
org.junit.Assert.assertNotNull(charSequenceTranslator19);
org.junit.Assert.assertEquals("'" + str21 + "' != '" + "" + "'", str21, "");
org.junit.Assert.assertEquals("'" + str23 + "' != '" + "hi!" + "'", str23, "hi!");
}
@Test
public void test2029() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2029");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 10, (int) '4');
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0032\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033", (int) (short) 10, writer5);
java.io.Writer writer8 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030", writer8);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
}
@Test
public void test2030() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2030");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 100, (-1));
java.io.Writer writer4 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean5 = unicodeEscaper2.translate((int) ' ', writer4);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2031() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2031");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(0, (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper4 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 100);
java.io.Writer writer6 = null;
boolean boolean7 = unicodeEscaper4.translate((int) (short) 0, writer6);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str12 = unicodeEscaper10.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer18 = null;
int int19 = unicodeEscaper15.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer18);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray26 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper15, unicodeEscaper21, unicodeEscaper22, unicodeEscaper25 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator27 = unicodeEscaper10.with(charSequenceTranslatorArray26);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str32 = unicodeEscaper30.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str37 = unicodeEscaper35.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer43 = null;
int int44 = unicodeEscaper40.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer43);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper46 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper47 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper50 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray51 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper40, unicodeEscaper46, unicodeEscaper47, unicodeEscaper50 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator52 = unicodeEscaper35.with(charSequenceTranslatorArray51);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator53 = unicodeEscaper30.with(charSequenceTranslatorArray51);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator54 = charSequenceTranslator27.with(charSequenceTranslatorArray51);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator55 = unicodeEscaper4.with(charSequenceTranslatorArray51);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator56 = unicodeEscaper2.with(charSequenceTranslatorArray51);
java.lang.String str58 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0036\\u0038\\u005C\\u0075\\u0030\\u0030\\u0036\\u0039\\u005C\\u0075\\u0030\\u0030\\u0032\\u0031");
java.lang.String str60 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750037\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030");
java.lang.String str62 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper4);
org.junit.Assert.assertTrue("'" + boolean7 + "' != '" + false + "'", boolean7 == false);
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertEquals("'" + str12 + "' != '" + "hi!" + "'", str12, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertTrue("'" + int19 + "' != '" + 0 + "'", int19 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray26);
org.junit.Assert.assertNotNull(charSequenceTranslator27);
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertEquals("'" + str32 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str32, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper35);
org.junit.Assert.assertEquals("'" + str37 + "' != '" + "hi!" + "'", str37, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper40);
org.junit.Assert.assertTrue("'" + int44 + "' != '" + 0 + "'", int44 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper46);
org.junit.Assert.assertNotNull(unicodeEscaper50);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray51);
org.junit.Assert.assertNotNull(charSequenceTranslator52);
org.junit.Assert.assertNotNull(charSequenceTranslator53);
org.junit.Assert.assertNotNull(charSequenceTranslator54);
org.junit.Assert.assertNotNull(charSequenceTranslator55);
org.junit.Assert.assertNotNull(charSequenceTranslator56);
org.junit.Assert.assertEquals("'" + str58 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0036\\u0038\\u005C\\u0075\\u0030\\u0030\\u0036\\u0039\\u005C\\u0075\\u0030\\u0030\\u0032\\u0031" + "'", str58, "\\u005C\\u0075\\u0030\\u0030\\u0036\\u0038\\u005C\\u0075\\u0030\\u0030\\u0036\\u0039\\u005C\\u0075\\u0030\\u0030\\u0032\\u0031");
org.junit.Assert.assertEquals("'" + str60 + "' != '" + "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750037\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030" + "'", str60, "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750037\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030");
org.junit.Assert.assertEquals("'" + str62 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034" + "'", str62, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
}
@Test
public void test2032() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2032");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (short) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer13 = null;
int int14 = unicodeEscaper10.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer13);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray21 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper10, unicodeEscaper16, unicodeEscaper17, unicodeEscaper20 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator22 = unicodeEscaper5.with(charSequenceTranslatorArray21);
java.io.Writer writer24 = null;
boolean boolean25 = unicodeEscaper5.translate((int) (byte) -1, writer24);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer30 = null;
boolean boolean31 = unicodeEscaper28.translate((int) (byte) 100, writer30);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper34 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str39 = unicodeEscaper37.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper42 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer45 = null;
int int46 = unicodeEscaper42.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer45);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper48 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper49 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper52 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray53 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper42, unicodeEscaper48, unicodeEscaper49, unicodeEscaper52 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator54 = unicodeEscaper37.with(charSequenceTranslatorArray53);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator55 = unicodeEscaper34.with(charSequenceTranslatorArray53);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator56 = unicodeEscaper28.with(charSequenceTranslatorArray53);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator57 = unicodeEscaper5.with(charSequenceTranslatorArray53);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator58 = unicodeEscaper2.with(charSequenceTranslatorArray53);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray59 = null;
// The following exception was thrown during execution in test generation
try {
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator60 = unicodeEscaper2.with(charSequenceTranslatorArray59);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "hi!" + "'", str7, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertTrue("'" + int14 + "' != '" + 0 + "'", int14 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray21);
org.junit.Assert.assertNotNull(charSequenceTranslator22);
org.junit.Assert.assertTrue("'" + boolean25 + "' != '" + false + "'", boolean25 == false);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertTrue("'" + boolean31 + "' != '" + false + "'", boolean31 == false);
org.junit.Assert.assertNotNull(unicodeEscaper34);
org.junit.Assert.assertNotNull(unicodeEscaper37);
org.junit.Assert.assertEquals("'" + str39 + "' != '" + "hi!" + "'", str39, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper42);
org.junit.Assert.assertTrue("'" + int46 + "' != '" + 0 + "'", int46 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper48);
org.junit.Assert.assertNotNull(unicodeEscaper52);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray53);
org.junit.Assert.assertNotNull(charSequenceTranslator54);
org.junit.Assert.assertNotNull(charSequenceTranslator55);
org.junit.Assert.assertNotNull(charSequenceTranslator56);
org.junit.Assert.assertNotNull(charSequenceTranslator57);
org.junit.Assert.assertNotNull(charSequenceTranslator58);
}
@Test
public void test2033() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2033");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 10);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) '4', writer4);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
}
@Test
public void test2034() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2034");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(1, (int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 0, (-1));
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 1, (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str13 = unicodeEscaper11.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str18 = unicodeEscaper16.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer24 = null;
int int25 = unicodeEscaper21.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer24);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray32 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper21, unicodeEscaper27, unicodeEscaper28, unicodeEscaper31 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper16.with(charSequenceTranslatorArray32);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator34 = unicodeEscaper11.with(charSequenceTranslatorArray32);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator35 = unicodeEscaper8.with(charSequenceTranslatorArray32);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator36 = unicodeEscaper5.with(charSequenceTranslatorArray32);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator37 = unicodeEscaper2.with(charSequenceTranslatorArray32);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertEquals("'" + str13 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str13, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertEquals("'" + str18 + "' != '" + "hi!" + "'", str18, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertTrue("'" + int25 + "' != '" + 0 + "'", int25 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
org.junit.Assert.assertNotNull(charSequenceTranslator34);
org.junit.Assert.assertNotNull(charSequenceTranslator35);
org.junit.Assert.assertNotNull(charSequenceTranslator36);
org.junit.Assert.assertNotNull(charSequenceTranslator37);
}
@Test
public void test2035() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2035");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
java.lang.String str3 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u0030");
java.lang.String str5 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033");
java.io.Writer writer8 = null;
int int9 = unicodeEscaper1.translate((java.lang.CharSequence) "\\\\u00750068\\\\u00750069\\\\u00750021", (int) (byte) 0, writer8);
java.io.Writer writer12 = null;
int int13 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030", 0, writer12);
java.io.Writer writer16 = null;
int int17 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036", (int) (short) 100, writer16);
java.lang.Class<?> wildcardClass18 = unicodeEscaper1.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertEquals("'" + str3 + "' != '" + "\\u0030" + "'", str3, "\\u0030");
org.junit.Assert.assertEquals("'" + str5 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033" + "'", str5, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033");
org.junit.Assert.assertTrue("'" + int9 + "' != '" + 0 + "'", int9 == 0);
org.junit.Assert.assertTrue("'" + int13 + "' != '" + 0 + "'", int13 == 0);
org.junit.Assert.assertTrue("'" + int17 + "' != '" + 0 + "'", int17 == 0);
org.junit.Assert.assertNotNull(wildcardClass18);
}
@Test
public void test2036() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2036");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) '4', (int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 0, (-1));
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, (int) 'a');
java.lang.String str13 = unicodeEscaper11.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, 1);
java.lang.String str18 = unicodeEscaper16.translate((java.lang.CharSequence) "FFFFFFFF");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str23 = unicodeEscaper21.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str28 = unicodeEscaper26.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer34 = null;
int int35 = unicodeEscaper31.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer34);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper38 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray42 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper31, unicodeEscaper37, unicodeEscaper38, unicodeEscaper41 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator43 = unicodeEscaper26.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper21.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator45 = unicodeEscaper16.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator46 = unicodeEscaper11.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator47 = unicodeEscaper8.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator48 = unicodeEscaper5.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator49 = unicodeEscaper2.with(charSequenceTranslatorArray42);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertEquals("'" + str13 + "' != '" + "0" + "'", str13, "0");
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertEquals("'" + str18 + "' != '" + "FFFFFFFF" + "'", str18, "FFFFFFFF");
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertEquals("'" + str23 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str23, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper26);
org.junit.Assert.assertEquals("'" + str28 + "' != '" + "hi!" + "'", str28, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertTrue("'" + int35 + "' != '" + 0 + "'", int35 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper37);
org.junit.Assert.assertNotNull(unicodeEscaper41);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray42);
org.junit.Assert.assertNotNull(charSequenceTranslator43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertNotNull(charSequenceTranslator45);
org.junit.Assert.assertNotNull(charSequenceTranslator46);
org.junit.Assert.assertNotNull(charSequenceTranslator47);
org.junit.Assert.assertNotNull(charSequenceTranslator48);
org.junit.Assert.assertNotNull(charSequenceTranslator49);
}
@Test
public void test2037() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2037");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, (int) (short) 10);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "0");
java.io.Writer writer6 = null;
boolean boolean7 = unicodeEscaper2.translate((int) (short) 0, writer6);
java.io.Writer writer9 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030", writer9);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u0030" + "'", str4, "\\u0030");
org.junit.Assert.assertTrue("'" + boolean7 + "' != '" + false + "'", boolean7 == false);
}
@Test
public void test2038() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2038");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 1, (int) (byte) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "23");
java.lang.String str6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030");
java.lang.String str8 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "23" + "'", str4, "23");
org.junit.Assert.assertEquals("'" + str6 + "' != '" + "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030" + "'", str6, "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030");
org.junit.Assert.assertEquals("'" + str8 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030" + "'", str8, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
}
@Test
public void test2039() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2039");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) '4', (int) ' ');
java.lang.Class<?> wildcardClass3 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(wildcardClass3);
}
@Test
public void test2040() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2040");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '#', 0);
java.io.Writer writer4 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u00750030", writer4);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2041() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2041");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 1, (int) (byte) 0);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((-1), writer4);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str10 = unicodeEscaper8.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer16 = null;
int int17 = unicodeEscaper13.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer16);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper23 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray24 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper13, unicodeEscaper19, unicodeEscaper20, unicodeEscaper23 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator25 = unicodeEscaper8.with(charSequenceTranslatorArray24);
java.lang.String str27 = unicodeEscaper8.translate((java.lang.CharSequence) "\\u0033\\u0034");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) 'a', (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper33 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str35 = unicodeEscaper33.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper38 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer41 = null;
int int42 = unicodeEscaper38.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer41);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper44 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper45 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper48 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray49 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper38, unicodeEscaper44, unicodeEscaper45, unicodeEscaper48 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator50 = unicodeEscaper33.with(charSequenceTranslatorArray49);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator51 = unicodeEscaper30.with(charSequenceTranslatorArray49);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator52 = unicodeEscaper8.with(charSequenceTranslatorArray49);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator53 = unicodeEscaper2.with(charSequenceTranslatorArray49);
java.io.Writer writer55 = null;
boolean boolean56 = unicodeEscaper2.translate((int) ' ', writer55);
java.lang.String str58 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
java.io.Writer writer61 = null;
int int62 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0031", 1, writer61);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertEquals("'" + str10 + "' != '" + "hi!" + "'", str10, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertTrue("'" + int17 + "' != '" + 0 + "'", int17 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper19);
org.junit.Assert.assertNotNull(unicodeEscaper23);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray24);
org.junit.Assert.assertNotNull(charSequenceTranslator25);
org.junit.Assert.assertEquals("'" + str27 + "' != '" + "\\u0033\\u0034" + "'", str27, "\\u0033\\u0034");
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertNotNull(unicodeEscaper33);
org.junit.Assert.assertEquals("'" + str35 + "' != '" + "hi!" + "'", str35, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper38);
org.junit.Assert.assertTrue("'" + int42 + "' != '" + 0 + "'", int42 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper44);
org.junit.Assert.assertNotNull(unicodeEscaper48);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray49);
org.junit.Assert.assertNotNull(charSequenceTranslator50);
org.junit.Assert.assertNotNull(charSequenceTranslator51);
org.junit.Assert.assertNotNull(charSequenceTranslator52);
org.junit.Assert.assertNotNull(charSequenceTranslator53);
org.junit.Assert.assertTrue("'" + boolean56 + "' != '" + false + "'", boolean56 == false);
org.junit.Assert.assertEquals("'" + str58 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030" + "'", str58, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
org.junit.Assert.assertTrue("'" + int62 + "' != '" + 0 + "'", int62 == 0);
}
@Test
public void test2042() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2042");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 1, (int) (byte) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "23");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) -1, (int) (byte) -1);
java.lang.String str9 = unicodeEscaper7.translate((java.lang.CharSequence) "\\u0036\\u0034");
java.io.Writer writer11 = null;
boolean boolean12 = unicodeEscaper7.translate((int) 'a', writer11);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str22 = unicodeEscaper20.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str27 = unicodeEscaper25.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer33 = null;
int int34 = unicodeEscaper30.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer33);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray41 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper30, unicodeEscaper36, unicodeEscaper37, unicodeEscaper40 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator42 = unicodeEscaper25.with(charSequenceTranslatorArray41);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator43 = unicodeEscaper20.with(charSequenceTranslatorArray41);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper17.with(charSequenceTranslatorArray41);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator45 = unicodeEscaper15.with(charSequenceTranslatorArray41);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator46 = unicodeEscaper7.with(charSequenceTranslatorArray41);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper49 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper52 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper55 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, 0);
java.io.Writer writer57 = null;
boolean boolean58 = unicodeEscaper55.translate((int) (short) 0, writer57);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper61 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper63 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper66 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str68 = unicodeEscaper66.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper71 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str73 = unicodeEscaper71.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper76 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer79 = null;
int int80 = unicodeEscaper76.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer79);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper82 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper83 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper86 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray87 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper76, unicodeEscaper82, unicodeEscaper83, unicodeEscaper86 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator88 = unicodeEscaper71.with(charSequenceTranslatorArray87);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator89 = unicodeEscaper66.with(charSequenceTranslatorArray87);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator90 = unicodeEscaper63.with(charSequenceTranslatorArray87);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator91 = unicodeEscaper61.with(charSequenceTranslatorArray87);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator92 = unicodeEscaper55.with(charSequenceTranslatorArray87);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator93 = unicodeEscaper52.with(charSequenceTranslatorArray87);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator94 = unicodeEscaper49.with(charSequenceTranslatorArray87);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator95 = unicodeEscaper7.with(charSequenceTranslatorArray87);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator96 = unicodeEscaper2.with(charSequenceTranslatorArray87);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "23" + "'", str4, "23");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertEquals("'" + str9 + "' != '" + "\\u0036\\u0034" + "'", str9, "\\u0036\\u0034");
org.junit.Assert.assertTrue("'" + boolean12 + "' != '" + false + "'", boolean12 == false);
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertEquals("'" + str22 + "' != '" + "hi!" + "'", str22, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertEquals("'" + str27 + "' != '" + "hi!" + "'", str27, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertTrue("'" + int34 + "' != '" + 0 + "'", int34 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper36);
org.junit.Assert.assertNotNull(unicodeEscaper40);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray41);
org.junit.Assert.assertNotNull(charSequenceTranslator42);
org.junit.Assert.assertNotNull(charSequenceTranslator43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertNotNull(charSequenceTranslator45);
org.junit.Assert.assertNotNull(charSequenceTranslator46);
org.junit.Assert.assertNotNull(unicodeEscaper49);
org.junit.Assert.assertNotNull(unicodeEscaper52);
org.junit.Assert.assertNotNull(unicodeEscaper55);
org.junit.Assert.assertTrue("'" + boolean58 + "' != '" + false + "'", boolean58 == false);
org.junit.Assert.assertNotNull(unicodeEscaper61);
org.junit.Assert.assertNotNull(unicodeEscaper63);
org.junit.Assert.assertNotNull(unicodeEscaper66);
org.junit.Assert.assertEquals("'" + str68 + "' != '" + "hi!" + "'", str68, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper71);
org.junit.Assert.assertEquals("'" + str73 + "' != '" + "hi!" + "'", str73, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper76);
org.junit.Assert.assertTrue("'" + int80 + "' != '" + 0 + "'", int80 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper82);
org.junit.Assert.assertNotNull(unicodeEscaper86);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray87);
org.junit.Assert.assertNotNull(charSequenceTranslator88);
org.junit.Assert.assertNotNull(charSequenceTranslator89);
org.junit.Assert.assertNotNull(charSequenceTranslator90);
org.junit.Assert.assertNotNull(charSequenceTranslator91);
org.junit.Assert.assertNotNull(charSequenceTranslator92);
org.junit.Assert.assertNotNull(charSequenceTranslator93);
org.junit.Assert.assertNotNull(charSequenceTranslator94);
org.junit.Assert.assertNotNull(charSequenceTranslator95);
org.junit.Assert.assertNotNull(charSequenceTranslator96);
}
@Test
public void test2043() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2043");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (short) 100);
java.lang.Class<?> wildcardClass2 = unicodeEscaper1.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertNotNull(wildcardClass2);
}
@Test
public void test2044() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2044");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 1, (int) (short) 10);
java.io.Writer writer5 = null;
// The following exception was thrown during execution in test generation
try {
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "", (int) (short) 1, writer5);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: 1");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2045() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2045");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) 10);
java.lang.String str3 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u0068\\u0069\\u0021");
java.io.Writer writer5 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper1.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750037\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030", writer5);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertEquals("'" + str3 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0036\\u0038\\u005C\\u0075\\u0030\\u0030\\u0036\\u0039\\u005C\\u0075\\u0030\\u0030\\u0032\\u0031" + "'", str3, "\\u005C\\u0075\\u0030\\u0030\\u0036\\u0038\\u005C\\u0075\\u0030\\u0030\\u0036\\u0039\\u005C\\u0075\\u0030\\u0030\\u0032\\u0031");
}
@Test
public void test2046() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2046");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 10, (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(1, (int) (short) 10);
java.io.Writer writer8 = null;
int int9 = unicodeEscaper5.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030", 0, writer8);
java.io.Writer writer11 = null;
boolean boolean12 = unicodeEscaper5.translate((int) (short) -1, writer11);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer17 = null;
boolean boolean18 = unicodeEscaper15.translate((int) (short) 0, writer17);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str23 = unicodeEscaper21.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str28 = unicodeEscaper26.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer34 = null;
int int35 = unicodeEscaper31.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer34);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper38 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray42 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper31, unicodeEscaper37, unicodeEscaper38, unicodeEscaper41 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator43 = unicodeEscaper26.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper21.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator45 = unicodeEscaper15.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator46 = unicodeEscaper5.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator47 = unicodeEscaper2.with(charSequenceTranslatorArray42);
java.io.Writer writer49 = null;
boolean boolean50 = unicodeEscaper2.translate(10, writer49);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper53 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer55 = null;
boolean boolean56 = unicodeEscaper53.translate((int) (byte) 100, writer55);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper59 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper62 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str64 = unicodeEscaper62.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper67 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer70 = null;
int int71 = unicodeEscaper67.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer70);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper73 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper74 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper77 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray78 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper67, unicodeEscaper73, unicodeEscaper74, unicodeEscaper77 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator79 = unicodeEscaper62.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator80 = unicodeEscaper59.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator81 = unicodeEscaper53.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator82 = unicodeEscaper2.with(charSequenceTranslatorArray78);
java.lang.CharSequence charSequence83 = null;
java.lang.String str84 = charSequenceTranslator82.translate(charSequence83);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertTrue("'" + int9 + "' != '" + 0 + "'", int9 == 0);
org.junit.Assert.assertTrue("'" + boolean12 + "' != '" + false + "'", boolean12 == false);
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertTrue("'" + boolean18 + "' != '" + false + "'", boolean18 == false);
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertEquals("'" + str23 + "' != '" + "hi!" + "'", str23, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper26);
org.junit.Assert.assertEquals("'" + str28 + "' != '" + "hi!" + "'", str28, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertTrue("'" + int35 + "' != '" + 0 + "'", int35 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper37);
org.junit.Assert.assertNotNull(unicodeEscaper41);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray42);
org.junit.Assert.assertNotNull(charSequenceTranslator43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertNotNull(charSequenceTranslator45);
org.junit.Assert.assertNotNull(charSequenceTranslator46);
org.junit.Assert.assertNotNull(charSequenceTranslator47);
org.junit.Assert.assertTrue("'" + boolean50 + "' != '" + false + "'", boolean50 == false);
org.junit.Assert.assertNotNull(unicodeEscaper53);
org.junit.Assert.assertTrue("'" + boolean56 + "' != '" + false + "'", boolean56 == false);
org.junit.Assert.assertNotNull(unicodeEscaper59);
org.junit.Assert.assertNotNull(unicodeEscaper62);
org.junit.Assert.assertEquals("'" + str64 + "' != '" + "hi!" + "'", str64, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper67);
org.junit.Assert.assertTrue("'" + int71 + "' != '" + 0 + "'", int71 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper73);
org.junit.Assert.assertNotNull(unicodeEscaper77);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray78);
org.junit.Assert.assertNotNull(charSequenceTranslator79);
org.junit.Assert.assertNotNull(charSequenceTranslator80);
org.junit.Assert.assertNotNull(charSequenceTranslator81);
org.junit.Assert.assertNotNull(charSequenceTranslator82);
org.junit.Assert.assertNull(str84);
}
@Test
public void test2047() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2047");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 0, (int) (byte) -1);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate(1, writer4);
java.lang.String str7 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031" + "'", str7, "\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
}
@Test
public void test2048() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2048");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(10, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '#', (int) (short) 1);
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
java.lang.String str9 = unicodeEscaper5.translate((java.lang.CharSequence) "\\\\u00750030");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) '#', (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 0, (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str20 = unicodeEscaper18.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper23 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str25 = unicodeEscaper23.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer31 = null;
int int32 = unicodeEscaper28.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer31);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper34 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper38 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray39 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper28, unicodeEscaper34, unicodeEscaper35, unicodeEscaper38 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator40 = unicodeEscaper23.with(charSequenceTranslatorArray39);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator41 = unicodeEscaper18.with(charSequenceTranslatorArray39);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator42 = unicodeEscaper15.with(charSequenceTranslatorArray39);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator43 = unicodeEscaper12.with(charSequenceTranslatorArray39);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper5.with(charSequenceTranslatorArray39);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator45 = unicodeEscaper2.with(charSequenceTranslatorArray39);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034" + "'", str7, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
org.junit.Assert.assertEquals("'" + str9 + "' != '" + "\\\\u00750030" + "'", str9, "\\\\u00750030");
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertEquals("'" + str20 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str20, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper23);
org.junit.Assert.assertEquals("'" + str25 + "' != '" + "hi!" + "'", str25, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertTrue("'" + int32 + "' != '" + 0 + "'", int32 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper34);
org.junit.Assert.assertNotNull(unicodeEscaper38);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray39);
org.junit.Assert.assertNotNull(charSequenceTranslator40);
org.junit.Assert.assertNotNull(charSequenceTranslator41);
org.junit.Assert.assertNotNull(charSequenceTranslator42);
org.junit.Assert.assertNotNull(charSequenceTranslator43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertNotNull(charSequenceTranslator45);
}
@Test
public void test2049() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2049");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '#', (int) (short) 100);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((-1), writer4);
java.io.Writer writer7 = null;
boolean boolean8 = unicodeEscaper2.translate((int) (byte) 1, writer7);
java.lang.String str10 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0032\\u0030");
java.io.Writer writer12 = null;
boolean boolean13 = unicodeEscaper2.translate((int) (byte) -1, writer12);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertTrue("'" + boolean8 + "' != '" + false + "'", boolean8 == false);
org.junit.Assert.assertEquals("'" + str10 + "' != '" + "\\u005Cu\\u0030\\u0030\\u0033\\u0032\\u005Cu\\u0030\\u0030\\u0033\\u0030" + "'", str10, "\\u005Cu\\u0030\\u0030\\u0033\\u0032\\u005Cu\\u0030\\u0030\\u0033\\u0030");
org.junit.Assert.assertTrue("'" + boolean13 + "' != '" + false + "'", boolean13 == false);
}
@Test
public void test2050() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2050");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 10, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer13 = null;
int int14 = unicodeEscaper10.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer13);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray21 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper10, unicodeEscaper16, unicodeEscaper17, unicodeEscaper20 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator22 = unicodeEscaper5.with(charSequenceTranslatorArray21);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator23 = unicodeEscaper2.with(charSequenceTranslatorArray21);
java.io.Writer writer25 = null;
boolean boolean26 = unicodeEscaper2.translate((int) ' ', writer25);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "hi!" + "'", str7, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertTrue("'" + int14 + "' != '" + 0 + "'", int14 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray21);
org.junit.Assert.assertNotNull(charSequenceTranslator22);
org.junit.Assert.assertNotNull(charSequenceTranslator23);
org.junit.Assert.assertTrue("'" + boolean26 + "' != '" + false + "'", boolean26 == false);
}
@Test
public void test2051() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2051");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) -1, (int) (byte) -1);
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2052() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2052");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) (byte) 10);
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031", (int) (byte) 0, writer5);
java.io.Writer writer8 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750036\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750031", writer8);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
}
@Test
public void test2053() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2053");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, (int) (byte) 100);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (short) 0, writer4);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
}
@Test
public void test2054() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2054");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, (int) (byte) 1);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate(100, writer4);
java.io.Writer writer7 = null;
boolean boolean8 = unicodeEscaper2.translate((int) (short) 10, writer7);
java.io.Writer writer11 = null;
// The following exception was thrown during execution in test generation
try {
int int12 = unicodeEscaper2.translate((java.lang.CharSequence) "34", (int) '#', writer11);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: 35");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertTrue("'" + boolean8 + "' != '" + false + "'", boolean8 == false);
}
@Test
public void test2055() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2055");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) (byte) -1);
java.io.Writer writer4 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u0075\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031", writer4);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2056() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2056");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer7 = null;
boolean boolean8 = unicodeEscaper5.translate((int) (short) 0, writer7);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str13 = unicodeEscaper11.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str18 = unicodeEscaper16.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer24 = null;
int int25 = unicodeEscaper21.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer24);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray32 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper21, unicodeEscaper27, unicodeEscaper28, unicodeEscaper31 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper16.with(charSequenceTranslatorArray32);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator34 = unicodeEscaper11.with(charSequenceTranslatorArray32);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator35 = unicodeEscaper5.with(charSequenceTranslatorArray32);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator36 = unicodeEscaper2.with(charSequenceTranslatorArray32);
java.lang.Class<?> wildcardClass37 = charSequenceTranslator36.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertTrue("'" + boolean8 + "' != '" + false + "'", boolean8 == false);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertEquals("'" + str13 + "' != '" + "hi!" + "'", str13, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertEquals("'" + str18 + "' != '" + "hi!" + "'", str18, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertTrue("'" + int25 + "' != '" + 0 + "'", int25 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
org.junit.Assert.assertNotNull(charSequenceTranslator34);
org.junit.Assert.assertNotNull(charSequenceTranslator35);
org.junit.Assert.assertNotNull(charSequenceTranslator36);
org.junit.Assert.assertNotNull(wildcardClass37);
}
@Test
public void test2057() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2057");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(1, (int) (short) 10);
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030", 0, writer5);
java.io.Writer writer8 = null;
boolean boolean9 = unicodeEscaper2.translate((int) (short) -1, writer8);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer14 = null;
boolean boolean15 = unicodeEscaper12.translate((int) (short) 0, writer14);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str20 = unicodeEscaper18.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper23 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str25 = unicodeEscaper23.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer31 = null;
int int32 = unicodeEscaper28.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer31);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper34 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper38 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray39 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper28, unicodeEscaper34, unicodeEscaper35, unicodeEscaper38 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator40 = unicodeEscaper23.with(charSequenceTranslatorArray39);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator41 = unicodeEscaper18.with(charSequenceTranslatorArray39);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator42 = unicodeEscaper12.with(charSequenceTranslatorArray39);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator43 = unicodeEscaper2.with(charSequenceTranslatorArray39);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper46 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper49 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer51 = null;
boolean boolean52 = unicodeEscaper49.translate((int) (short) 0, writer51);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper55 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str57 = unicodeEscaper55.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper60 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str62 = unicodeEscaper60.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper65 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer68 = null;
int int69 = unicodeEscaper65.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer68);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper71 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper72 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper75 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray76 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper65, unicodeEscaper71, unicodeEscaper72, unicodeEscaper75 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator77 = unicodeEscaper60.with(charSequenceTranslatorArray76);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator78 = unicodeEscaper55.with(charSequenceTranslatorArray76);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator79 = unicodeEscaper49.with(charSequenceTranslatorArray76);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator80 = unicodeEscaper46.with(charSequenceTranslatorArray76);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator81 = unicodeEscaper2.with(charSequenceTranslatorArray76);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
org.junit.Assert.assertTrue("'" + boolean9 + "' != '" + false + "'", boolean9 == false);
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertTrue("'" + boolean15 + "' != '" + false + "'", boolean15 == false);
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertEquals("'" + str20 + "' != '" + "hi!" + "'", str20, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper23);
org.junit.Assert.assertEquals("'" + str25 + "' != '" + "hi!" + "'", str25, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertTrue("'" + int32 + "' != '" + 0 + "'", int32 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper34);
org.junit.Assert.assertNotNull(unicodeEscaper38);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray39);
org.junit.Assert.assertNotNull(charSequenceTranslator40);
org.junit.Assert.assertNotNull(charSequenceTranslator41);
org.junit.Assert.assertNotNull(charSequenceTranslator42);
org.junit.Assert.assertNotNull(charSequenceTranslator43);
org.junit.Assert.assertNotNull(unicodeEscaper46);
org.junit.Assert.assertNotNull(unicodeEscaper49);
org.junit.Assert.assertTrue("'" + boolean52 + "' != '" + false + "'", boolean52 == false);
org.junit.Assert.assertNotNull(unicodeEscaper55);
org.junit.Assert.assertEquals("'" + str57 + "' != '" + "hi!" + "'", str57, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper60);
org.junit.Assert.assertEquals("'" + str62 + "' != '" + "hi!" + "'", str62, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper65);
org.junit.Assert.assertTrue("'" + int69 + "' != '" + 0 + "'", int69 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper71);
org.junit.Assert.assertNotNull(unicodeEscaper75);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray76);
org.junit.Assert.assertNotNull(charSequenceTranslator77);
org.junit.Assert.assertNotNull(charSequenceTranslator78);
org.junit.Assert.assertNotNull(charSequenceTranslator79);
org.junit.Assert.assertNotNull(charSequenceTranslator80);
org.junit.Assert.assertNotNull(charSequenceTranslator81);
}
@Test
public void test2058() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2058");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(1, (int) (short) 0);
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2059() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2059");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, (int) ' ');
java.io.Writer writer5 = null;
// The following exception was thrown during execution in test generation
try {
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005Cu00\\u0035\\u0043\\u005Cu00\\u0037\\u0035\\u005Cu0030\\u005Cu0030\\u005Cu0033\\u005Cu0033\\u005Cu00\\u0035\\u0043\\u005Cu00\\u0037\\u0035\\u005Cu0030\\u005Cu0030\\u005Cu0033\\u005Cu003\\u0034", (int) (short) 100, writer5);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2060() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2060");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, 0);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((-1), writer4);
java.io.Writer writer7 = null;
boolean boolean8 = unicodeEscaper2.translate((int) ' ', writer7);
java.io.Writer writer11 = null;
int int12 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030", (int) (byte) 100, writer11);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertTrue("'" + boolean8 + "' != '" + false + "'", boolean8 == false);
org.junit.Assert.assertTrue("'" + int12 + "' != '" + 0 + "'", int12 == 0);
}
@Test
public void test2061() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2061");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 0, (int) (short) 1);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (short) 100, writer4);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
}
@Test
public void test2062() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2062");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, (int) '4');
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\\\u00750075005C\\\\\\u007500750075\\\\\\u007500750030\\\\\\u007500750030\\\\\\u007500750033\\\\\\u007500750031", (int) (short) 1, writer5);
java.io.Writer writer9 = null;
// The following exception was thrown during execution in test generation
try {
int int10 = unicodeEscaper2.translate((java.lang.CharSequence) "34", (int) (short) 10, writer9);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: 10");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
}
@Test
public void test2063() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2063");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, 1);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "64");
java.io.Writer writer6 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "1", writer6);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "64" + "'", str4, "64");
}
@Test
public void test2064() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2064");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) '4');
java.lang.Class<?> wildcardClass2 = unicodeEscaper1.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertNotNull(wildcardClass2);
}
@Test
public void test2065() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2065");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) '4', (int) (short) -1);
java.io.Writer writer5 = null;
// The following exception was thrown during execution in test generation
try {
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "0", (int) (byte) 10, writer5);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: 10");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2066() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2066");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) -1);
java.io.Writer writer3 = null;
boolean boolean4 = unicodeEscaper1.translate((int) '#', writer3);
java.lang.String str6 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
java.lang.String str8 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u0041");
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertTrue("'" + boolean4 + "' != '" + false + "'", boolean4 == false);
org.junit.Assert.assertEquals("'" + str6 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034" + "'", str6, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
org.junit.Assert.assertEquals("'" + str8 + "' != '" + "\\u0041" + "'", str8, "\\u0041");
}
@Test
public void test2067() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2067");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) ' ');
java.io.Writer writer3 = null;
boolean boolean4 = unicodeEscaper1.translate((int) 'a', writer3);
java.io.Writer writer6 = null;
boolean boolean7 = unicodeEscaper1.translate(100, writer6);
java.io.Writer writer9 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean10 = unicodeEscaper1.translate((int) (short) -1, writer9);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertTrue("'" + boolean4 + "' != '" + false + "'", boolean4 == false);
org.junit.Assert.assertTrue("'" + boolean7 + "' != '" + false + "'", boolean7 == false);
}
@Test
public void test2068() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2068");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) -1);
java.io.Writer writer3 = null;
boolean boolean4 = unicodeEscaper1.translate((int) '#', writer3);
java.io.Writer writer6 = null;
boolean boolean7 = unicodeEscaper1.translate(100, writer6);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper9 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (short) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) -1, (int) (short) -1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str17 = unicodeEscaper15.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str22 = unicodeEscaper20.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer28 = null;
int int29 = unicodeEscaper25.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer28);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray36 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper25, unicodeEscaper31, unicodeEscaper32, unicodeEscaper35 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator37 = unicodeEscaper20.with(charSequenceTranslatorArray36);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator38 = unicodeEscaper15.with(charSequenceTranslatorArray36);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer44 = null;
int int45 = unicodeEscaper41.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer44);
java.io.Writer writer47 = null;
boolean boolean48 = unicodeEscaper41.translate((int) (byte) -1, writer47);
java.lang.String str50 = unicodeEscaper41.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper53 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str55 = unicodeEscaper53.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray56 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper41, unicodeEscaper53 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator57 = unicodeEscaper15.with(charSequenceTranslatorArray56);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator58 = unicodeEscaper12.with(charSequenceTranslatorArray56);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator59 = unicodeEscaper9.with(charSequenceTranslatorArray56);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator60 = unicodeEscaper1.with(charSequenceTranslatorArray56);
java.io.Writer writer63 = null;
// The following exception was thrown during execution in test generation
try {
int int64 = unicodeEscaper1.translate((java.lang.CharSequence) "hi!", 100, writer63);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: 100");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertTrue("'" + boolean4 + "' != '" + false + "'", boolean4 == false);
org.junit.Assert.assertTrue("'" + boolean7 + "' != '" + false + "'", boolean7 == false);
org.junit.Assert.assertNotNull(unicodeEscaper9);
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertEquals("'" + str17 + "' != '" + "hi!" + "'", str17, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertEquals("'" + str22 + "' != '" + "hi!" + "'", str22, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertTrue("'" + int29 + "' != '" + 0 + "'", int29 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertNotNull(unicodeEscaper35);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray36);
org.junit.Assert.assertNotNull(charSequenceTranslator37);
org.junit.Assert.assertNotNull(charSequenceTranslator38);
org.junit.Assert.assertNotNull(unicodeEscaper41);
org.junit.Assert.assertTrue("'" + int45 + "' != '" + 0 + "'", int45 == 0);
org.junit.Assert.assertTrue("'" + boolean48 + "' != '" + false + "'", boolean48 == false);
org.junit.Assert.assertEquals("'" + str50 + "' != '" + "0" + "'", str50, "0");
org.junit.Assert.assertNotNull(unicodeEscaper53);
org.junit.Assert.assertEquals("'" + str55 + "' != '" + "hi!" + "'", str55, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray56);
org.junit.Assert.assertNotNull(charSequenceTranslator57);
org.junit.Assert.assertNotNull(charSequenceTranslator58);
org.junit.Assert.assertNotNull(charSequenceTranslator59);
org.junit.Assert.assertNotNull(charSequenceTranslator60);
}
@Test
public void test2069() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2069");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) -1, 1);
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2070() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2070");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 1, (int) '#');
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2071() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2071");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 1, (int) (byte) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "23");
java.lang.String str6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030");
java.io.Writer writer8 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036", writer8);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "23" + "'", str4, "23");
org.junit.Assert.assertEquals("'" + str6 + "' != '" + "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030" + "'", str6, "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030");
}
@Test
public void test2072() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2072");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) 0);
java.io.Writer writer3 = null;
boolean boolean4 = unicodeEscaper1.translate(1, writer3);
java.io.Writer writer6 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper1.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034", writer6);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertTrue("'" + boolean4 + "' != '" + false + "'", boolean4 == false);
}
@Test
public void test2073() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2073");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(100, (int) (short) 1);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "6\\u0031");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((-1), (int) (byte) 10);
java.io.Writer writer10 = null;
int int11 = unicodeEscaper7.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030", 1, writer10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer16 = null;
boolean boolean17 = unicodeEscaper14.translate((int) (short) 0, writer16);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str22 = unicodeEscaper20.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str27 = unicodeEscaper25.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer33 = null;
int int34 = unicodeEscaper30.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer33);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray41 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper30, unicodeEscaper36, unicodeEscaper37, unicodeEscaper40 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator42 = unicodeEscaper25.with(charSequenceTranslatorArray41);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator43 = unicodeEscaper20.with(charSequenceTranslatorArray41);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper14.with(charSequenceTranslatorArray41);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator45 = unicodeEscaper7.with(charSequenceTranslatorArray41);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator46 = unicodeEscaper2.with(charSequenceTranslatorArray41);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031" + "'", str4, "\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertTrue("'" + int11 + "' != '" + 0 + "'", int11 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper14);
org.junit.Assert.assertTrue("'" + boolean17 + "' != '" + false + "'", boolean17 == false);
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertEquals("'" + str22 + "' != '" + "hi!" + "'", str22, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertEquals("'" + str27 + "' != '" + "hi!" + "'", str27, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertTrue("'" + int34 + "' != '" + 0 + "'", int34 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper36);
org.junit.Assert.assertNotNull(unicodeEscaper40);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray41);
org.junit.Assert.assertNotNull(charSequenceTranslator42);
org.junit.Assert.assertNotNull(charSequenceTranslator43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertNotNull(charSequenceTranslator45);
org.junit.Assert.assertNotNull(charSequenceTranslator46);
}
@Test
public void test2074() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2074");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(1, (-1));
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper4 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer9 = null;
boolean boolean10 = unicodeEscaper7.translate((int) (short) 0, writer9);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray14 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper7, unicodeEscaper11, unicodeEscaper13 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator15 = unicodeEscaper4.with(charSequenceTranslatorArray14);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator16 = unicodeEscaper2.with(charSequenceTranslatorArray14);
java.io.Writer writer18 = null;
boolean boolean19 = unicodeEscaper2.translate(100, writer18);
java.io.Writer writer21 = null;
boolean boolean22 = unicodeEscaper2.translate((int) (byte) 1, writer21);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper4);
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertTrue("'" + boolean10 + "' != '" + false + "'", boolean10 == false);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray14);
org.junit.Assert.assertNotNull(charSequenceTranslator15);
org.junit.Assert.assertNotNull(charSequenceTranslator16);
org.junit.Assert.assertTrue("'" + boolean19 + "' != '" + false + "'", boolean19 == false);
org.junit.Assert.assertTrue("'" + boolean22 + "' != '" + false + "'", boolean22 == false);
}
@Test
public void test2075() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2075");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 10, (int) (short) 1);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034" + "'", str4, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
}
@Test
public void test2076() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2076");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(0, (int) (short) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) -1, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 10, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer15 = null;
boolean boolean16 = unicodeEscaper13.translate((int) (short) 0, writer15);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray20 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper13, unicodeEscaper17, unicodeEscaper19 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator21 = unicodeEscaper10.with(charSequenceTranslatorArray20);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator22 = unicodeEscaper8.with(charSequenceTranslatorArray20);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator23 = unicodeEscaper5.with(charSequenceTranslatorArray20);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) -1, 0);
java.lang.String str28 = unicodeEscaper26.translate((java.lang.CharSequence) "1");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str33 = unicodeEscaper31.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str38 = unicodeEscaper36.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer44 = null;
int int45 = unicodeEscaper41.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer44);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper47 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper48 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper51 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray52 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper41, unicodeEscaper47, unicodeEscaper48, unicodeEscaper51 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator53 = unicodeEscaper36.with(charSequenceTranslatorArray52);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator54 = unicodeEscaper31.with(charSequenceTranslatorArray52);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer60 = null;
int int61 = unicodeEscaper57.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer60);
java.io.Writer writer63 = null;
boolean boolean64 = unicodeEscaper57.translate((int) (byte) -1, writer63);
java.lang.String str66 = unicodeEscaper57.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper69 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str71 = unicodeEscaper69.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray72 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper57, unicodeEscaper69 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator73 = unicodeEscaper31.with(charSequenceTranslatorArray72);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator74 = unicodeEscaper26.with(charSequenceTranslatorArray72);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator75 = charSequenceTranslator23.with(charSequenceTranslatorArray72);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator76 = unicodeEscaper2.with(charSequenceTranslatorArray72);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertTrue("'" + boolean16 + "' != '" + false + "'", boolean16 == false);
org.junit.Assert.assertNotNull(unicodeEscaper19);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray20);
org.junit.Assert.assertNotNull(charSequenceTranslator21);
org.junit.Assert.assertNotNull(charSequenceTranslator22);
org.junit.Assert.assertNotNull(charSequenceTranslator23);
org.junit.Assert.assertNotNull(unicodeEscaper26);
org.junit.Assert.assertEquals("'" + str28 + "' != '" + "\\u0031" + "'", str28, "\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertEquals("'" + str33 + "' != '" + "hi!" + "'", str33, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper36);
org.junit.Assert.assertEquals("'" + str38 + "' != '" + "hi!" + "'", str38, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper41);
org.junit.Assert.assertTrue("'" + int45 + "' != '" + 0 + "'", int45 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper47);
org.junit.Assert.assertNotNull(unicodeEscaper51);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray52);
org.junit.Assert.assertNotNull(charSequenceTranslator53);
org.junit.Assert.assertNotNull(charSequenceTranslator54);
org.junit.Assert.assertNotNull(unicodeEscaper57);
org.junit.Assert.assertTrue("'" + int61 + "' != '" + 0 + "'", int61 == 0);
org.junit.Assert.assertTrue("'" + boolean64 + "' != '" + false + "'", boolean64 == false);
org.junit.Assert.assertEquals("'" + str66 + "' != '" + "0" + "'", str66, "0");
org.junit.Assert.assertNotNull(unicodeEscaper69);
org.junit.Assert.assertEquals("'" + str71 + "' != '" + "hi!" + "'", str71, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray72);
org.junit.Assert.assertNotNull(charSequenceTranslator73);
org.junit.Assert.assertNotNull(charSequenceTranslator74);
org.junit.Assert.assertNotNull(charSequenceTranslator75);
org.junit.Assert.assertNotNull(charSequenceTranslator76);
}
@Test
public void test2077() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2077");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(10);
java.lang.String str3 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
java.io.Writer writer6 = null;
int int7 = unicodeEscaper1.translate((java.lang.CharSequence) "hi!", (int) (short) 0, writer6);
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertEquals("'" + str3 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034" + "'", str3, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
org.junit.Assert.assertTrue("'" + int7 + "' != '" + 0 + "'", int7 == 0);
}
@Test
public void test2078() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2078");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, (int) 'a');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str12 = unicodeEscaper10.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer18 = null;
int int19 = unicodeEscaper15.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer18);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray26 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper15, unicodeEscaper21, unicodeEscaper22, unicodeEscaper25 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator27 = unicodeEscaper10.with(charSequenceTranslatorArray26);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator28 = unicodeEscaper5.with(charSequenceTranslatorArray26);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator29 = unicodeEscaper2.with(charSequenceTranslatorArray26);
java.io.Writer writer32 = null;
int int33 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0031", (int) (byte) 0, writer32);
java.io.Writer writer36 = null;
int int37 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030", (int) ' ', writer36);
java.io.Writer writer39 = null;
boolean boolean40 = unicodeEscaper2.translate((int) 'a', writer39);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str7, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertEquals("'" + str12 + "' != '" + "hi!" + "'", str12, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertTrue("'" + int19 + "' != '" + 0 + "'", int19 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray26);
org.junit.Assert.assertNotNull(charSequenceTranslator27);
org.junit.Assert.assertNotNull(charSequenceTranslator28);
org.junit.Assert.assertNotNull(charSequenceTranslator29);
org.junit.Assert.assertTrue("'" + int33 + "' != '" + 0 + "'", int33 == 0);
org.junit.Assert.assertTrue("'" + int37 + "' != '" + 0 + "'", int37 == 0);
org.junit.Assert.assertTrue("'" + boolean40 + "' != '" + false + "'", boolean40 == false);
}
@Test
public void test2079() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2079");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) 0);
java.io.Writer writer3 = null;
boolean boolean4 = unicodeEscaper1.translate(1, writer3);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper6 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (short) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper9 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 100, (int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str16 = unicodeEscaper14.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str21 = unicodeEscaper19.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer27 = null;
int int28 = unicodeEscaper24.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer27);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper34 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray35 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper24, unicodeEscaper30, unicodeEscaper31, unicodeEscaper34 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator36 = unicodeEscaper19.with(charSequenceTranslatorArray35);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator37 = unicodeEscaper14.with(charSequenceTranslatorArray35);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator38 = unicodeEscaper11.with(charSequenceTranslatorArray35);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(10, 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper44 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper46 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray47 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper11, unicodeEscaper41, unicodeEscaper44, unicodeEscaper46 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator48 = unicodeEscaper9.with(charSequenceTranslatorArray47);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator49 = unicodeEscaper6.with(charSequenceTranslatorArray47);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator50 = unicodeEscaper1.with(charSequenceTranslatorArray47);
java.lang.CharSequence charSequence51 = null;
java.io.Writer writer53 = null;
// The following exception was thrown during execution in test generation
try {
int int54 = unicodeEscaper1.translate(charSequence51, 0, writer53);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertTrue("'" + boolean4 + "' != '" + false + "'", boolean4 == false);
org.junit.Assert.assertNotNull(unicodeEscaper6);
org.junit.Assert.assertNotNull(unicodeEscaper9);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertNotNull(unicodeEscaper14);
org.junit.Assert.assertEquals("'" + str16 + "' != '" + "hi!" + "'", str16, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper19);
org.junit.Assert.assertEquals("'" + str21 + "' != '" + "hi!" + "'", str21, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertTrue("'" + int28 + "' != '" + 0 + "'", int28 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertNotNull(unicodeEscaper34);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray35);
org.junit.Assert.assertNotNull(charSequenceTranslator36);
org.junit.Assert.assertNotNull(charSequenceTranslator37);
org.junit.Assert.assertNotNull(charSequenceTranslator38);
org.junit.Assert.assertNotNull(unicodeEscaper41);
org.junit.Assert.assertNotNull(unicodeEscaper44);
org.junit.Assert.assertNotNull(unicodeEscaper46);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray47);
org.junit.Assert.assertNotNull(charSequenceTranslator48);
org.junit.Assert.assertNotNull(charSequenceTranslator49);
org.junit.Assert.assertNotNull(charSequenceTranslator50);
}
@Test
public void test2080() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2080");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 100);
java.io.Writer writer3 = null;
boolean boolean4 = unicodeEscaper1.translate((int) (short) 0, writer3);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str9 = unicodeEscaper7.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer15 = null;
int int16 = unicodeEscaper12.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer15);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray23 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper12, unicodeEscaper18, unicodeEscaper19, unicodeEscaper22 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator24 = unicodeEscaper7.with(charSequenceTranslatorArray23);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str29 = unicodeEscaper27.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str34 = unicodeEscaper32.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer40 = null;
int int41 = unicodeEscaper37.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer40);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper43 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper44 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper47 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray48 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper37, unicodeEscaper43, unicodeEscaper44, unicodeEscaper47 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator49 = unicodeEscaper32.with(charSequenceTranslatorArray48);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator50 = unicodeEscaper27.with(charSequenceTranslatorArray48);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator51 = charSequenceTranslator24.with(charSequenceTranslatorArray48);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator52 = unicodeEscaper1.with(charSequenceTranslatorArray48);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper54 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer59 = null;
boolean boolean60 = unicodeEscaper57.translate((int) (short) 0, writer59);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper61 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper63 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray64 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper57, unicodeEscaper61, unicodeEscaper63 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator65 = unicodeEscaper54.with(charSequenceTranslatorArray64);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator66 = unicodeEscaper1.with(charSequenceTranslatorArray64);
java.lang.String str68 = charSequenceTranslator66.translate((java.lang.CharSequence) "0");
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertTrue("'" + boolean4 + "' != '" + false + "'", boolean4 == false);
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertEquals("'" + str9 + "' != '" + "hi!" + "'", str9, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertTrue("'" + int16 + "' != '" + 0 + "'", int16 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray23);
org.junit.Assert.assertNotNull(charSequenceTranslator24);
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertEquals("'" + str29 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str29, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper32);
org.junit.Assert.assertEquals("'" + str34 + "' != '" + "hi!" + "'", str34, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper37);
org.junit.Assert.assertTrue("'" + int41 + "' != '" + 0 + "'", int41 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper43);
org.junit.Assert.assertNotNull(unicodeEscaper47);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray48);
org.junit.Assert.assertNotNull(charSequenceTranslator49);
org.junit.Assert.assertNotNull(charSequenceTranslator50);
org.junit.Assert.assertNotNull(charSequenceTranslator51);
org.junit.Assert.assertNotNull(charSequenceTranslator52);
org.junit.Assert.assertNotNull(unicodeEscaper54);
org.junit.Assert.assertNotNull(unicodeEscaper57);
org.junit.Assert.assertTrue("'" + boolean60 + "' != '" + false + "'", boolean60 == false);
org.junit.Assert.assertNotNull(unicodeEscaper63);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray64);
org.junit.Assert.assertNotNull(charSequenceTranslator65);
org.junit.Assert.assertNotNull(charSequenceTranslator66);
org.junit.Assert.assertEquals("'" + str68 + "' != '" + "\\u0030" + "'", str68, "\\u0030");
}
@Test
public void test2081() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2081");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) 'a', (int) '4');
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
java.io.Writer writer6 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036", writer6);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031" + "'", str4, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
}
@Test
public void test2082() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2082");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(1, 100);
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030", 0, writer5);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
}
@Test
public void test2083() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2083");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 1, (int) (byte) 10);
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0036\\u0038\\u005C\\u0075\\u0030\\u0030\\u0036\\u0039\\u005C\\u0075\\u0030\\u0030\\u0032\\u0031");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(0, (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, (int) 'a');
java.lang.String str15 = unicodeEscaper13.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, 1);
java.lang.String str20 = unicodeEscaper18.translate((java.lang.CharSequence) "FFFFFFFF");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper23 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str25 = unicodeEscaper23.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str30 = unicodeEscaper28.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper33 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer36 = null;
int int37 = unicodeEscaper33.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer36);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper39 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper43 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray44 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper33, unicodeEscaper39, unicodeEscaper40, unicodeEscaper43 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator45 = unicodeEscaper28.with(charSequenceTranslatorArray44);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator46 = unicodeEscaper23.with(charSequenceTranslatorArray44);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator47 = unicodeEscaper18.with(charSequenceTranslatorArray44);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator48 = unicodeEscaper13.with(charSequenceTranslatorArray44);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator49 = unicodeEscaper10.with(charSequenceTranslatorArray44);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator50 = unicodeEscaper5.with(charSequenceTranslatorArray44);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator51 = unicodeEscaper2.with(charSequenceTranslatorArray44);
java.io.Writer writer54 = null;
// The following exception was thrown during execution in test generation
try {
int int55 = unicodeEscaper2.translate((java.lang.CharSequence) "hi!", (int) (byte) 100, writer54);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: 100");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0038\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0039\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031" + "'", str7, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0038\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0039\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertEquals("'" + str15 + "' != '" + "0" + "'", str15, "0");
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertEquals("'" + str20 + "' != '" + "FFFFFFFF" + "'", str20, "FFFFFFFF");
org.junit.Assert.assertNotNull(unicodeEscaper23);
org.junit.Assert.assertEquals("'" + str25 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str25, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertEquals("'" + str30 + "' != '" + "hi!" + "'", str30, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper33);
org.junit.Assert.assertTrue("'" + int37 + "' != '" + 0 + "'", int37 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper39);
org.junit.Assert.assertNotNull(unicodeEscaper43);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray44);
org.junit.Assert.assertNotNull(charSequenceTranslator45);
org.junit.Assert.assertNotNull(charSequenceTranslator46);
org.junit.Assert.assertNotNull(charSequenceTranslator47);
org.junit.Assert.assertNotNull(charSequenceTranslator48);
org.junit.Assert.assertNotNull(charSequenceTranslator49);
org.junit.Assert.assertNotNull(charSequenceTranslator50);
org.junit.Assert.assertNotNull(charSequenceTranslator51);
}
@Test
public void test2084() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2084");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 1, (int) (byte) 0);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((-1), writer4);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str10 = unicodeEscaper8.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer16 = null;
int int17 = unicodeEscaper13.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer16);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper23 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray24 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper13, unicodeEscaper19, unicodeEscaper20, unicodeEscaper23 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator25 = unicodeEscaper8.with(charSequenceTranslatorArray24);
java.lang.String str27 = unicodeEscaper8.translate((java.lang.CharSequence) "\\u0033\\u0034");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) 'a', (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper33 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str35 = unicodeEscaper33.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper38 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer41 = null;
int int42 = unicodeEscaper38.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer41);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper44 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper45 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper48 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray49 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper38, unicodeEscaper44, unicodeEscaper45, unicodeEscaper48 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator50 = unicodeEscaper33.with(charSequenceTranslatorArray49);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator51 = unicodeEscaper30.with(charSequenceTranslatorArray49);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator52 = unicodeEscaper8.with(charSequenceTranslatorArray49);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator53 = unicodeEscaper2.with(charSequenceTranslatorArray49);
java.io.Writer writer55 = null;
boolean boolean56 = unicodeEscaper2.translate((int) ' ', writer55);
java.lang.String str58 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray59 = null;
// The following exception was thrown during execution in test generation
try {
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator60 = unicodeEscaper2.with(charSequenceTranslatorArray59);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertEquals("'" + str10 + "' != '" + "hi!" + "'", str10, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertTrue("'" + int17 + "' != '" + 0 + "'", int17 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper19);
org.junit.Assert.assertNotNull(unicodeEscaper23);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray24);
org.junit.Assert.assertNotNull(charSequenceTranslator25);
org.junit.Assert.assertEquals("'" + str27 + "' != '" + "\\u0033\\u0034" + "'", str27, "\\u0033\\u0034");
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertNotNull(unicodeEscaper33);
org.junit.Assert.assertEquals("'" + str35 + "' != '" + "hi!" + "'", str35, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper38);
org.junit.Assert.assertTrue("'" + int42 + "' != '" + 0 + "'", int42 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper44);
org.junit.Assert.assertNotNull(unicodeEscaper48);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray49);
org.junit.Assert.assertNotNull(charSequenceTranslator50);
org.junit.Assert.assertNotNull(charSequenceTranslator51);
org.junit.Assert.assertNotNull(charSequenceTranslator52);
org.junit.Assert.assertNotNull(charSequenceTranslator53);
org.junit.Assert.assertTrue("'" + boolean56 + "' != '" + false + "'", boolean56 == false);
org.junit.Assert.assertEquals("'" + str58 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030" + "'", str58, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
}
@Test
public void test2085() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2085");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, (int) (byte) 1);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate(100, writer4);
java.io.Writer writer7 = null;
boolean boolean8 = unicodeEscaper2.translate((int) (short) 10, writer7);
java.io.Writer writer11 = null;
// The following exception was thrown during execution in test generation
try {
int int12 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u00750032\\\\u00750033", (-1), writer11);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: -1");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertTrue("'" + boolean8 + "' != '" + false + "'", boolean8 == false);
}
@Test
public void test2086() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2086");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(1);
java.lang.String str3 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u0032\\u0033");
java.io.Writer writer6 = null;
int int7 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036", 10, writer6);
java.io.Writer writer9 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper1.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750037\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030", writer9);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertEquals("'" + str3 + "' != '" + "\\u0032\\u0033" + "'", str3, "\\u0032\\u0033");
org.junit.Assert.assertTrue("'" + int7 + "' != '" + 0 + "'", int7 == 0);
}
@Test
public void test2087() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2087");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray2 = null;
// The following exception was thrown during execution in test generation
try {
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator3 = unicodeEscaper1.with(charSequenceTranslatorArray2);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper1);
}
@Test
public void test2088() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2088");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(1, (int) (short) 10);
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030", 0, writer5);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper9 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str14 = unicodeEscaper12.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str19 = unicodeEscaper17.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer25 = null;
int int26 = unicodeEscaper22.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer25);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper29 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray33 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper22, unicodeEscaper28, unicodeEscaper29, unicodeEscaper32 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator34 = unicodeEscaper17.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator35 = unicodeEscaper12.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator36 = unicodeEscaper9.with(charSequenceTranslatorArray33);
java.lang.String str38 = charSequenceTranslator36.translate((java.lang.CharSequence) "23");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str43 = unicodeEscaper41.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper46 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str48 = unicodeEscaper46.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper51 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer54 = null;
int int55 = unicodeEscaper51.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer54);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper58 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper61 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray62 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper51, unicodeEscaper57, unicodeEscaper58, unicodeEscaper61 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator63 = unicodeEscaper46.with(charSequenceTranslatorArray62);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator64 = unicodeEscaper41.with(charSequenceTranslatorArray62);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper67 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer70 = null;
int int71 = unicodeEscaper67.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer70);
java.io.Writer writer73 = null;
boolean boolean74 = unicodeEscaper67.translate((int) (byte) -1, writer73);
java.lang.String str76 = unicodeEscaper67.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper79 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str81 = unicodeEscaper79.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray82 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper67, unicodeEscaper79 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator83 = unicodeEscaper41.with(charSequenceTranslatorArray82);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator84 = charSequenceTranslator36.with(charSequenceTranslatorArray82);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator85 = unicodeEscaper2.with(charSequenceTranslatorArray82);
java.io.Writer writer87 = null;
boolean boolean88 = unicodeEscaper2.translate((-1), writer87);
java.io.Writer writer90 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean91 = unicodeEscaper2.translate(1, writer90);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper9);
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertEquals("'" + str14 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str14, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertEquals("'" + str19 + "' != '" + "hi!" + "'", str19, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertTrue("'" + int26 + "' != '" + 0 + "'", int26 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(unicodeEscaper32);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray33);
org.junit.Assert.assertNotNull(charSequenceTranslator34);
org.junit.Assert.assertNotNull(charSequenceTranslator35);
org.junit.Assert.assertNotNull(charSequenceTranslator36);
org.junit.Assert.assertEquals("'" + str38 + "' != '" + "\\u0032\\u0033" + "'", str38, "\\u0032\\u0033");
org.junit.Assert.assertNotNull(unicodeEscaper41);
org.junit.Assert.assertEquals("'" + str43 + "' != '" + "hi!" + "'", str43, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper46);
org.junit.Assert.assertEquals("'" + str48 + "' != '" + "hi!" + "'", str48, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper51);
org.junit.Assert.assertTrue("'" + int55 + "' != '" + 0 + "'", int55 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper57);
org.junit.Assert.assertNotNull(unicodeEscaper61);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray62);
org.junit.Assert.assertNotNull(charSequenceTranslator63);
org.junit.Assert.assertNotNull(charSequenceTranslator64);
org.junit.Assert.assertNotNull(unicodeEscaper67);
org.junit.Assert.assertTrue("'" + int71 + "' != '" + 0 + "'", int71 == 0);
org.junit.Assert.assertTrue("'" + boolean74 + "' != '" + false + "'", boolean74 == false);
org.junit.Assert.assertEquals("'" + str76 + "' != '" + "0" + "'", str76, "0");
org.junit.Assert.assertNotNull(unicodeEscaper79);
org.junit.Assert.assertEquals("'" + str81 + "' != '" + "hi!" + "'", str81, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray82);
org.junit.Assert.assertNotNull(charSequenceTranslator83);
org.junit.Assert.assertNotNull(charSequenceTranslator84);
org.junit.Assert.assertNotNull(charSequenceTranslator85);
org.junit.Assert.assertTrue("'" + boolean88 + "' != '" + false + "'", boolean88 == false);
}
@Test
public void test2089() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2089");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(10, (int) (short) 1);
java.io.Writer writer5 = null;
// The following exception was thrown during execution in test generation
try {
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034", (-1), writer5);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: -1");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2090() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2090");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) -1);
java.io.Writer writer3 = null;
boolean boolean4 = unicodeEscaper1.translate((int) (byte) 0, writer3);
java.io.Writer writer7 = null;
int int8 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036", (int) (byte) 10, writer7);
java.lang.String str10 = unicodeEscaper1.translate((java.lang.CharSequence) "\\\\u00750068\\\\u00750069\\\\u00750021");
java.lang.String str12 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u0036\\u005Cu\\u0030\\u0030\\u0033\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertTrue("'" + boolean4 + "' != '" + false + "'", boolean4 == false);
org.junit.Assert.assertTrue("'" + int8 + "' != '" + 0 + "'", int8 == 0);
org.junit.Assert.assertEquals("'" + str10 + "' != '" + "\\\\u00750068\\\\u00750069\\\\u00750021" + "'", str10, "\\\\u00750068\\\\u00750069\\\\u00750021");
org.junit.Assert.assertEquals("'" + str12 + "' != '" + "\\u0036\\u005Cu\\u0030\\u0030\\u0033\\u0031" + "'", str12, "\\u0036\\u005Cu\\u0030\\u0030\\u0033\\u0031");
}
@Test
public void test2091() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2091");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (short) -1);
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "64", 1, writer5);
java.io.Writer writer9 = null;
int int10 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036", 0, writer9);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
org.junit.Assert.assertTrue("'" + int10 + "' != '" + 0 + "'", int10 == 0);
}
@Test
public void test2092() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2092");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, 1);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "FFFFFFFF");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str9 = unicodeEscaper7.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str14 = unicodeEscaper12.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer20 = null;
int int21 = unicodeEscaper17.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer20);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper23 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray28 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper17, unicodeEscaper23, unicodeEscaper24, unicodeEscaper27 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator29 = unicodeEscaper12.with(charSequenceTranslatorArray28);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator30 = unicodeEscaper7.with(charSequenceTranslatorArray28);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper2.with(charSequenceTranslatorArray28);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper34 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, (int) 'a');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str39 = unicodeEscaper37.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper42 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str44 = unicodeEscaper42.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper47 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer50 = null;
int int51 = unicodeEscaper47.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer50);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper53 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper54 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray58 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper47, unicodeEscaper53, unicodeEscaper54, unicodeEscaper57 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator59 = unicodeEscaper42.with(charSequenceTranslatorArray58);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator60 = unicodeEscaper37.with(charSequenceTranslatorArray58);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator61 = unicodeEscaper34.with(charSequenceTranslatorArray58);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator62 = unicodeEscaper2.with(charSequenceTranslatorArray58);
java.lang.String str64 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u00750032\\\\u00750033");
java.lang.Class<?> wildcardClass65 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "FFFFFFFF" + "'", str4, "FFFFFFFF");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertEquals("'" + str9 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str9, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertEquals("'" + str14 + "' != '" + "hi!" + "'", str14, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertTrue("'" + int21 + "' != '" + 0 + "'", int21 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper23);
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray28);
org.junit.Assert.assertNotNull(charSequenceTranslator29);
org.junit.Assert.assertNotNull(charSequenceTranslator30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
org.junit.Assert.assertNotNull(unicodeEscaper34);
org.junit.Assert.assertNotNull(unicodeEscaper37);
org.junit.Assert.assertEquals("'" + str39 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str39, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper42);
org.junit.Assert.assertEquals("'" + str44 + "' != '" + "hi!" + "'", str44, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper47);
org.junit.Assert.assertTrue("'" + int51 + "' != '" + 0 + "'", int51 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper53);
org.junit.Assert.assertNotNull(unicodeEscaper57);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray58);
org.junit.Assert.assertNotNull(charSequenceTranslator59);
org.junit.Assert.assertNotNull(charSequenceTranslator60);
org.junit.Assert.assertNotNull(charSequenceTranslator61);
org.junit.Assert.assertNotNull(charSequenceTranslator62);
org.junit.Assert.assertEquals("'" + str64 + "' != '" + "\\\\u00750032\\\\u00750033" + "'", str64, "\\\\u00750032\\\\u00750033");
org.junit.Assert.assertNotNull(wildcardClass65);
}
@Test
public void test2093() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2093");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(1, (int) (byte) 1);
java.io.Writer writer4 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\u005Cu\\u0030\\u0030\\u0033\\u0032\\u005Cu\\u0030\\u0030\\u0033\\u0030", writer4);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2094() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2094");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 10, (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(1, (int) (short) 10);
java.io.Writer writer8 = null;
int int9 = unicodeEscaper5.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030", 0, writer8);
java.io.Writer writer11 = null;
boolean boolean12 = unicodeEscaper5.translate((int) (short) -1, writer11);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer17 = null;
boolean boolean18 = unicodeEscaper15.translate((int) (short) 0, writer17);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str23 = unicodeEscaper21.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str28 = unicodeEscaper26.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer34 = null;
int int35 = unicodeEscaper31.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer34);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper38 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray42 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper31, unicodeEscaper37, unicodeEscaper38, unicodeEscaper41 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator43 = unicodeEscaper26.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper21.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator45 = unicodeEscaper15.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator46 = unicodeEscaper5.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator47 = unicodeEscaper2.with(charSequenceTranslatorArray42);
java.io.Writer writer49 = null;
boolean boolean50 = unicodeEscaper2.translate(10, writer49);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper53 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer55 = null;
boolean boolean56 = unicodeEscaper53.translate((int) (byte) 100, writer55);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper59 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper62 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str64 = unicodeEscaper62.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper67 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer70 = null;
int int71 = unicodeEscaper67.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer70);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper73 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper74 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper77 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray78 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper67, unicodeEscaper73, unicodeEscaper74, unicodeEscaper77 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator79 = unicodeEscaper62.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator80 = unicodeEscaper59.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator81 = unicodeEscaper53.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator82 = unicodeEscaper2.with(charSequenceTranslatorArray78);
java.lang.String str84 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0030");
java.io.Writer writer86 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean87 = unicodeEscaper2.translate((int) (byte) -1, writer86);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertTrue("'" + int9 + "' != '" + 0 + "'", int9 == 0);
org.junit.Assert.assertTrue("'" + boolean12 + "' != '" + false + "'", boolean12 == false);
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertTrue("'" + boolean18 + "' != '" + false + "'", boolean18 == false);
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertEquals("'" + str23 + "' != '" + "hi!" + "'", str23, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper26);
org.junit.Assert.assertEquals("'" + str28 + "' != '" + "hi!" + "'", str28, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertTrue("'" + int35 + "' != '" + 0 + "'", int35 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper37);
org.junit.Assert.assertNotNull(unicodeEscaper41);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray42);
org.junit.Assert.assertNotNull(charSequenceTranslator43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertNotNull(charSequenceTranslator45);
org.junit.Assert.assertNotNull(charSequenceTranslator46);
org.junit.Assert.assertNotNull(charSequenceTranslator47);
org.junit.Assert.assertTrue("'" + boolean50 + "' != '" + false + "'", boolean50 == false);
org.junit.Assert.assertNotNull(unicodeEscaper53);
org.junit.Assert.assertTrue("'" + boolean56 + "' != '" + false + "'", boolean56 == false);
org.junit.Assert.assertNotNull(unicodeEscaper59);
org.junit.Assert.assertNotNull(unicodeEscaper62);
org.junit.Assert.assertEquals("'" + str64 + "' != '" + "hi!" + "'", str64, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper67);
org.junit.Assert.assertTrue("'" + int71 + "' != '" + 0 + "'", int71 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper73);
org.junit.Assert.assertNotNull(unicodeEscaper77);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray78);
org.junit.Assert.assertNotNull(charSequenceTranslator79);
org.junit.Assert.assertNotNull(charSequenceTranslator80);
org.junit.Assert.assertNotNull(charSequenceTranslator81);
org.junit.Assert.assertNotNull(charSequenceTranslator82);
org.junit.Assert.assertEquals("'" + str84 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030" + "'", str84, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
}
@Test
public void test2095() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2095");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0036\\u0038\\u005C\\u0075\\u0030\\u0030\\u0036\\u0039\\u005C\\u0075\\u0030\\u0030\\u0032\\u0031", (int) (byte) 1, writer5);
java.lang.Class<?> wildcardClass7 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
org.junit.Assert.assertNotNull(wildcardClass7);
}
@Test
public void test2096() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2096");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 1, 1);
java.io.Writer writer4 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean5 = unicodeEscaper2.translate((int) (short) 10, writer4);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2097() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2097");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) ' ');
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "20");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "20" + "'", str4, "20");
}
@Test
public void test2098() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2098");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (short) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper4 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) 'a', (int) 'a');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str9 = unicodeEscaper7.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str14 = unicodeEscaper12.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer20 = null;
int int21 = unicodeEscaper17.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer20);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper23 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray28 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper17, unicodeEscaper23, unicodeEscaper24, unicodeEscaper27 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator29 = unicodeEscaper12.with(charSequenceTranslatorArray28);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator30 = unicodeEscaper7.with(charSequenceTranslatorArray28);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer37 = null;
boolean boolean38 = unicodeEscaper35.translate((int) (short) 0, writer37);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper39 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray42 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper35, unicodeEscaper39, unicodeEscaper41 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator43 = unicodeEscaper32.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = charSequenceTranslator30.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator45 = unicodeEscaper4.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator46 = unicodeEscaper1.with(charSequenceTranslatorArray42);
java.lang.String str48 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertNotNull(unicodeEscaper4);
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertEquals("'" + str9 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str9, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertEquals("'" + str14 + "' != '" + "hi!" + "'", str14, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertTrue("'" + int21 + "' != '" + 0 + "'", int21 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper23);
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray28);
org.junit.Assert.assertNotNull(charSequenceTranslator29);
org.junit.Assert.assertNotNull(charSequenceTranslator30);
org.junit.Assert.assertNotNull(unicodeEscaper32);
org.junit.Assert.assertNotNull(unicodeEscaper35);
org.junit.Assert.assertTrue("'" + boolean38 + "' != '" + false + "'", boolean38 == false);
org.junit.Assert.assertNotNull(unicodeEscaper41);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray42);
org.junit.Assert.assertNotNull(charSequenceTranslator43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertNotNull(charSequenceTranslator45);
org.junit.Assert.assertNotNull(charSequenceTranslator46);
org.junit.Assert.assertEquals("'" + str48 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031" + "'", str48, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
}
@Test
public void test2099() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2099");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) 'a');
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) 'a', writer4);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 1, (int) (byte) -1);
java.io.Writer writer10 = null;
boolean boolean11 = unicodeEscaper8.translate((int) (byte) 10, writer10);
java.io.Writer writer14 = null;
int int15 = unicodeEscaper8.translate((java.lang.CharSequence) "\\\\u00750068\\\\u00750069\\\\u00750021", (int) ' ', writer14);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
java.lang.String str19 = unicodeEscaper17.translate((java.lang.CharSequence) "\\\\u00750030");
java.io.Writer writer21 = null;
boolean boolean22 = unicodeEscaper17.translate((int) (short) 0, writer21);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(10, 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper34 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str39 = unicodeEscaper37.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper42 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer45 = null;
int int46 = unicodeEscaper42.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer45);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper48 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper49 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper52 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray53 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper42, unicodeEscaper48, unicodeEscaper49, unicodeEscaper52 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator54 = unicodeEscaper37.with(charSequenceTranslatorArray53);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator55 = unicodeEscaper34.with(charSequenceTranslatorArray53);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator56 = unicodeEscaper31.with(charSequenceTranslatorArray53);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator57 = unicodeEscaper28.with(charSequenceTranslatorArray53);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator58 = unicodeEscaper25.with(charSequenceTranslatorArray53);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator59 = unicodeEscaper17.with(charSequenceTranslatorArray53);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator60 = unicodeEscaper8.with(charSequenceTranslatorArray53);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator61 = unicodeEscaper2.with(charSequenceTranslatorArray53);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertTrue("'" + boolean11 + "' != '" + false + "'", boolean11 == false);
org.junit.Assert.assertTrue("'" + int15 + "' != '" + 0 + "'", int15 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertEquals("'" + str19 + "' != '" + "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030" + "'", str19, "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030");
org.junit.Assert.assertTrue("'" + boolean22 + "' != '" + false + "'", boolean22 == false);
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertNotNull(unicodeEscaper34);
org.junit.Assert.assertNotNull(unicodeEscaper37);
org.junit.Assert.assertEquals("'" + str39 + "' != '" + "hi!" + "'", str39, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper42);
org.junit.Assert.assertTrue("'" + int46 + "' != '" + 0 + "'", int46 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper48);
org.junit.Assert.assertNotNull(unicodeEscaper52);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray53);
org.junit.Assert.assertNotNull(charSequenceTranslator54);
org.junit.Assert.assertNotNull(charSequenceTranslator55);
org.junit.Assert.assertNotNull(charSequenceTranslator56);
org.junit.Assert.assertNotNull(charSequenceTranslator57);
org.junit.Assert.assertNotNull(charSequenceTranslator58);
org.junit.Assert.assertNotNull(charSequenceTranslator59);
org.junit.Assert.assertNotNull(charSequenceTranslator60);
org.junit.Assert.assertNotNull(charSequenceTranslator61);
}
@Test
public void test2100() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2100");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(10, (-1));
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
java.io.Writer writer7 = null;
// The following exception was thrown during execution in test generation
try {
int int8 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0036\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0034", (int) (short) -1, writer7);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: -1");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030" + "'", str4, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
}
@Test
public void test2101() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2101");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((-1), (int) (byte) -1);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((-1), writer4);
java.lang.Class<?> wildcardClass6 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertNotNull(wildcardClass6);
}
@Test
public void test2102() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2102");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (short) 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 1, (int) (byte) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str10 = unicodeEscaper8.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str15 = unicodeEscaper13.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer21 = null;
int int22 = unicodeEscaper18.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer21);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray29 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper18, unicodeEscaper24, unicodeEscaper25, unicodeEscaper28 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator30 = unicodeEscaper13.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper8.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper33 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) 10);
java.io.Writer writer35 = null;
boolean boolean36 = unicodeEscaper33.translate((int) (byte) 100, writer35);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper38 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 1, (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper44 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer46 = null;
boolean boolean47 = unicodeEscaper44.translate((int) (short) 0, writer46);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper50 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str52 = unicodeEscaper50.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper55 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str57 = unicodeEscaper55.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper60 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer63 = null;
int int64 = unicodeEscaper60.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer63);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper66 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper67 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper70 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray71 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper60, unicodeEscaper66, unicodeEscaper67, unicodeEscaper70 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator72 = unicodeEscaper55.with(charSequenceTranslatorArray71);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator73 = unicodeEscaper50.with(charSequenceTranslatorArray71);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator74 = unicodeEscaper44.with(charSequenceTranslatorArray71);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper77 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) -1, (int) (byte) 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper80 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 100, (int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper82 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) ' ');
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray83 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper38, unicodeEscaper41, charSequenceTranslator74, unicodeEscaper77, unicodeEscaper80, unicodeEscaper82 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator84 = unicodeEscaper33.with(charSequenceTranslatorArray83);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator85 = charSequenceTranslator31.with(charSequenceTranslatorArray83);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator86 = unicodeEscaper5.with(charSequenceTranslatorArray83);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator87 = unicodeEscaper2.with(charSequenceTranslatorArray83);
java.io.Writer writer89 = null;
boolean boolean90 = unicodeEscaper2.translate((int) 'a', writer89);
java.io.Writer writer93 = null;
// The following exception was thrown during execution in test generation
try {
int int94 = unicodeEscaper2.translate((java.lang.CharSequence) "61", 10, writer93);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: 10");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertEquals("'" + str10 + "' != '" + "hi!" + "'", str10, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertEquals("'" + str15 + "' != '" + "hi!" + "'", str15, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertTrue("'" + int22 + "' != '" + 0 + "'", int22 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray29);
org.junit.Assert.assertNotNull(charSequenceTranslator30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
org.junit.Assert.assertNotNull(unicodeEscaper33);
org.junit.Assert.assertTrue("'" + boolean36 + "' != '" + false + "'", boolean36 == false);
org.junit.Assert.assertNotNull(unicodeEscaper38);
org.junit.Assert.assertNotNull(unicodeEscaper41);
org.junit.Assert.assertNotNull(unicodeEscaper44);
org.junit.Assert.assertTrue("'" + boolean47 + "' != '" + false + "'", boolean47 == false);
org.junit.Assert.assertNotNull(unicodeEscaper50);
org.junit.Assert.assertEquals("'" + str52 + "' != '" + "hi!" + "'", str52, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper55);
org.junit.Assert.assertEquals("'" + str57 + "' != '" + "hi!" + "'", str57, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper60);
org.junit.Assert.assertTrue("'" + int64 + "' != '" + 0 + "'", int64 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper66);
org.junit.Assert.assertNotNull(unicodeEscaper70);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray71);
org.junit.Assert.assertNotNull(charSequenceTranslator72);
org.junit.Assert.assertNotNull(charSequenceTranslator73);
org.junit.Assert.assertNotNull(charSequenceTranslator74);
org.junit.Assert.assertNotNull(unicodeEscaper77);
org.junit.Assert.assertNotNull(unicodeEscaper80);
org.junit.Assert.assertNotNull(unicodeEscaper82);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray83);
org.junit.Assert.assertNotNull(charSequenceTranslator84);
org.junit.Assert.assertNotNull(charSequenceTranslator85);
org.junit.Assert.assertNotNull(charSequenceTranslator86);
org.junit.Assert.assertNotNull(charSequenceTranslator87);
org.junit.Assert.assertTrue("'" + boolean90 + "' != '" + false + "'", boolean90 == false);
}
@Test
public void test2103() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2103");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(10, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str10 = unicodeEscaper8.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str15 = unicodeEscaper13.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer21 = null;
int int22 = unicodeEscaper18.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer21);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray29 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper18, unicodeEscaper24, unicodeEscaper25, unicodeEscaper28 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator30 = unicodeEscaper13.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper8.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator32 = unicodeEscaper5.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper38 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str40 = unicodeEscaper38.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper43 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str45 = unicodeEscaper43.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper48 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer51 = null;
int int52 = unicodeEscaper48.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer51);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper54 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper55 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper58 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray59 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper48, unicodeEscaper54, unicodeEscaper55, unicodeEscaper58 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator60 = unicodeEscaper43.with(charSequenceTranslatorArray59);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator61 = unicodeEscaper38.with(charSequenceTranslatorArray59);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator62 = unicodeEscaper35.with(charSequenceTranslatorArray59);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper64 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper67 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str69 = unicodeEscaper67.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper72 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str74 = unicodeEscaper72.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper77 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer80 = null;
int int81 = unicodeEscaper77.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer80);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper83 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper84 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper87 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray88 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper77, unicodeEscaper83, unicodeEscaper84, unicodeEscaper87 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator89 = unicodeEscaper72.with(charSequenceTranslatorArray88);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator90 = unicodeEscaper67.with(charSequenceTranslatorArray88);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator91 = unicodeEscaper64.with(charSequenceTranslatorArray88);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator92 = charSequenceTranslator62.with(charSequenceTranslatorArray88);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator93 = unicodeEscaper5.with(charSequenceTranslatorArray88);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator94 = unicodeEscaper2.with(charSequenceTranslatorArray88);
java.io.Writer writer96 = null;
// The following exception was thrown during execution in test generation
try {
charSequenceTranslator94.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031", writer96);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertEquals("'" + str10 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str10, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertEquals("'" + str15 + "' != '" + "hi!" + "'", str15, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertTrue("'" + int22 + "' != '" + 0 + "'", int22 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray29);
org.junit.Assert.assertNotNull(charSequenceTranslator30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
org.junit.Assert.assertNotNull(charSequenceTranslator32);
org.junit.Assert.assertNotNull(unicodeEscaper35);
org.junit.Assert.assertNotNull(unicodeEscaper38);
org.junit.Assert.assertEquals("'" + str40 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str40, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper43);
org.junit.Assert.assertEquals("'" + str45 + "' != '" + "hi!" + "'", str45, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper48);
org.junit.Assert.assertTrue("'" + int52 + "' != '" + 0 + "'", int52 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper54);
org.junit.Assert.assertNotNull(unicodeEscaper58);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray59);
org.junit.Assert.assertNotNull(charSequenceTranslator60);
org.junit.Assert.assertNotNull(charSequenceTranslator61);
org.junit.Assert.assertNotNull(charSequenceTranslator62);
org.junit.Assert.assertNotNull(unicodeEscaper64);
org.junit.Assert.assertNotNull(unicodeEscaper67);
org.junit.Assert.assertEquals("'" + str69 + "' != '" + "hi!" + "'", str69, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper72);
org.junit.Assert.assertEquals("'" + str74 + "' != '" + "hi!" + "'", str74, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper77);
org.junit.Assert.assertTrue("'" + int81 + "' != '" + 0 + "'", int81 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper83);
org.junit.Assert.assertNotNull(unicodeEscaper87);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray88);
org.junit.Assert.assertNotNull(charSequenceTranslator89);
org.junit.Assert.assertNotNull(charSequenceTranslator90);
org.junit.Assert.assertNotNull(charSequenceTranslator91);
org.junit.Assert.assertNotNull(charSequenceTranslator92);
org.junit.Assert.assertNotNull(charSequenceTranslator93);
org.junit.Assert.assertNotNull(charSequenceTranslator94);
}
@Test
public void test2104() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2104");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "20");
java.lang.String str6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750036\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750031");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "20" + "'", str4, "20");
org.junit.Assert.assertEquals("'" + str6 + "' != '" + "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750036\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750031" + "'", str6, "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750036\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750031");
}
@Test
public void test2105() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2105");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 1, (int) (byte) 1);
java.io.Writer writer4 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "20", writer4);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2106() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2106");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 100, (int) (short) 10);
java.io.Writer writer4 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean5 = unicodeEscaper2.translate((int) (byte) 0, writer4);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2107() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2107");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 1, (int) (byte) 100);
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2108() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2108");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 100, 100);
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2109() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2109");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 0, (-1));
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str13 = unicodeEscaper11.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer19 = null;
int int20 = unicodeEscaper16.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer19);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper23 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray27 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper16, unicodeEscaper22, unicodeEscaper23, unicodeEscaper26 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator28 = unicodeEscaper11.with(charSequenceTranslatorArray27);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator29 = unicodeEscaper8.with(charSequenceTranslatorArray27);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator30 = unicodeEscaper5.with(charSequenceTranslatorArray27);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper2.with(charSequenceTranslatorArray27);
java.io.Writer writer34 = null;
int int35 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0036\\u0034", 1, writer34);
java.io.Writer writer37 = null;
boolean boolean38 = unicodeEscaper2.translate((int) 'a', writer37);
java.io.Writer writer40 = null;
boolean boolean41 = unicodeEscaper2.translate((int) (byte) 100, writer40);
java.lang.String str43 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005Cu\\u0030\\u0030\\u0035\\u0043\\u005Cu\\u0030\\u0030\\u0037\\u0035\\u005Cu\\u0030\\u0030\\u0033\\u0030\\u005Cu\\u0030\\u0030\\u0033\\u0030\\u005Cu\\u0030\\u0030\\u0033\\u0033\\u005Cu\\u0030\\u0030\\u0033\\u0030");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertEquals("'" + str13 + "' != '" + "hi!" + "'", str13, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertTrue("'" + int20 + "' != '" + 0 + "'", int20 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertNotNull(unicodeEscaper26);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray27);
org.junit.Assert.assertNotNull(charSequenceTranslator28);
org.junit.Assert.assertNotNull(charSequenceTranslator29);
org.junit.Assert.assertNotNull(charSequenceTranslator30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
org.junit.Assert.assertTrue("'" + int35 + "' != '" + 0 + "'", int35 == 0);
org.junit.Assert.assertTrue("'" + boolean38 + "' != '" + false + "'", boolean38 == false);
org.junit.Assert.assertTrue("'" + boolean41 + "' != '" + false + "'", boolean41 == false);
org.junit.Assert.assertEquals("'" + str43 + "' != '" + "\\u005Cu\\u0030\\u0030\\u0035\\u0043\\u005Cu\\u0030\\u0030\\u0037\\u0035\\u005Cu\\u0030\\u0030\\u0033\\u0030\\u005Cu\\u0030\\u0030\\u0033\\u0030\\u005Cu\\u0030\\u0030\\u0033\\u0033\\u005Cu\\u0030\\u0030\\u0033\\u0030" + "'", str43, "\\u005Cu\\u0030\\u0030\\u0035\\u0043\\u005Cu\\u0030\\u0030\\u0037\\u0035\\u005Cu\\u0030\\u0030\\u0033\\u0030\\u005Cu\\u0030\\u0030\\u0033\\u0030\\u005Cu\\u0030\\u0030\\u0033\\u0033\\u005Cu\\u0030\\u0030\\u0033\\u0030");
}
@Test
public void test2110() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2110");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, (int) 'a');
java.io.Writer writer4 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u00750036\\\\u00750031", writer4);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2111() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2111");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
java.io.Writer writer3 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean4 = unicodeEscaper1.translate((int) (byte) 100, writer3);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper1);
}
@Test
public void test2112() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2112");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer10 = null;
int int11 = unicodeEscaper7.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray18 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper7, unicodeEscaper13, unicodeEscaper14, unicodeEscaper17 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator19 = unicodeEscaper2.with(charSequenceTranslatorArray18);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str24 = unicodeEscaper22.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str29 = unicodeEscaper27.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer35 = null;
int int36 = unicodeEscaper32.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer35);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper38 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper39 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper42 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray43 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper32, unicodeEscaper38, unicodeEscaper39, unicodeEscaper42 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper27.with(charSequenceTranslatorArray43);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator45 = unicodeEscaper22.with(charSequenceTranslatorArray43);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper48 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer51 = null;
int int52 = unicodeEscaper48.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer51);
java.io.Writer writer54 = null;
boolean boolean55 = unicodeEscaper48.translate((int) (byte) -1, writer54);
java.lang.String str57 = unicodeEscaper48.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper60 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str62 = unicodeEscaper60.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray63 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper48, unicodeEscaper60 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator64 = unicodeEscaper22.with(charSequenceTranslatorArray63);
java.lang.String str66 = unicodeEscaper22.translate((java.lang.CharSequence) "");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper69 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper72 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str74 = unicodeEscaper72.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper77 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str79 = unicodeEscaper77.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper82 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer85 = null;
int int86 = unicodeEscaper82.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer85);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper88 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper89 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper92 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray93 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper82, unicodeEscaper88, unicodeEscaper89, unicodeEscaper92 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator94 = unicodeEscaper77.with(charSequenceTranslatorArray93);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator95 = unicodeEscaper72.with(charSequenceTranslatorArray93);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator96 = unicodeEscaper69.with(charSequenceTranslatorArray93);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator97 = unicodeEscaper22.with(charSequenceTranslatorArray93);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator98 = charSequenceTranslator19.with(charSequenceTranslatorArray93);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "hi!" + "'", str4, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertTrue("'" + int11 + "' != '" + 0 + "'", int11 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray18);
org.junit.Assert.assertNotNull(charSequenceTranslator19);
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertEquals("'" + str24 + "' != '" + "hi!" + "'", str24, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertEquals("'" + str29 + "' != '" + "hi!" + "'", str29, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper32);
org.junit.Assert.assertTrue("'" + int36 + "' != '" + 0 + "'", int36 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper38);
org.junit.Assert.assertNotNull(unicodeEscaper42);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertNotNull(charSequenceTranslator45);
org.junit.Assert.assertNotNull(unicodeEscaper48);
org.junit.Assert.assertTrue("'" + int52 + "' != '" + 0 + "'", int52 == 0);
org.junit.Assert.assertTrue("'" + boolean55 + "' != '" + false + "'", boolean55 == false);
org.junit.Assert.assertEquals("'" + str57 + "' != '" + "0" + "'", str57, "0");
org.junit.Assert.assertNotNull(unicodeEscaper60);
org.junit.Assert.assertEquals("'" + str62 + "' != '" + "hi!" + "'", str62, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray63);
org.junit.Assert.assertNotNull(charSequenceTranslator64);
org.junit.Assert.assertEquals("'" + str66 + "' != '" + "" + "'", str66, "");
org.junit.Assert.assertNotNull(unicodeEscaper69);
org.junit.Assert.assertNotNull(unicodeEscaper72);
org.junit.Assert.assertEquals("'" + str74 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str74, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper77);
org.junit.Assert.assertEquals("'" + str79 + "' != '" + "hi!" + "'", str79, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper82);
org.junit.Assert.assertTrue("'" + int86 + "' != '" + 0 + "'", int86 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper88);
org.junit.Assert.assertNotNull(unicodeEscaper92);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray93);
org.junit.Assert.assertNotNull(charSequenceTranslator94);
org.junit.Assert.assertNotNull(charSequenceTranslator95);
org.junit.Assert.assertNotNull(charSequenceTranslator96);
org.junit.Assert.assertNotNull(charSequenceTranslator97);
org.junit.Assert.assertNotNull(charSequenceTranslator98);
}
@Test
public void test2113() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2113");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(10, (-1));
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0032\\u0030", (int) (short) 10, writer5);
java.lang.String str8 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\\\u007500750068\\\\\\u007500750069\\\\\\u007500750021");
java.io.Writer writer10 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\u005Cu00\\u0035\\u0043\\u005Cu00\\u0037\\u0035\\u005Cu0030\\u005Cu0030\\u005Cu0033\\u005Cu0033\\u005Cu00\\u0035\\u0043\\u005Cu00\\u0037\\u0035\\u005Cu0030\\u005Cu0030\\u005Cu0033\\u005Cu003\\u0034", writer10);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
org.junit.Assert.assertEquals("'" + str8 + "' != '" + "\\\\\\u007500750068\\\\\\u007500750069\\\\\\u007500750021" + "'", str8, "\\\\\\u007500750068\\\\\\u007500750069\\\\\\u007500750021");
}
@Test
public void test2114() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2114");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, (int) 'a');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str12 = unicodeEscaper10.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer18 = null;
int int19 = unicodeEscaper15.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer18);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray26 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper15, unicodeEscaper21, unicodeEscaper22, unicodeEscaper25 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator27 = unicodeEscaper10.with(charSequenceTranslatorArray26);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator28 = unicodeEscaper5.with(charSequenceTranslatorArray26);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer34 = null;
int int35 = unicodeEscaper31.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer34);
java.io.Writer writer37 = null;
boolean boolean38 = unicodeEscaper31.translate((int) (byte) -1, writer37);
java.lang.String str40 = unicodeEscaper31.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper43 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str45 = unicodeEscaper43.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray46 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper31, unicodeEscaper43 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator47 = unicodeEscaper5.with(charSequenceTranslatorArray46);
java.lang.String str49 = unicodeEscaper5.translate((java.lang.CharSequence) "");
java.lang.String str51 = unicodeEscaper5.translate((java.lang.CharSequence) "\\u0068\\u0069\\u0021");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper54 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(10, 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper60 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper63 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper66 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str68 = unicodeEscaper66.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper71 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer74 = null;
int int75 = unicodeEscaper71.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer74);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper77 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper78 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper81 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray82 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper71, unicodeEscaper77, unicodeEscaper78, unicodeEscaper81 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator83 = unicodeEscaper66.with(charSequenceTranslatorArray82);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator84 = unicodeEscaper63.with(charSequenceTranslatorArray82);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator85 = unicodeEscaper60.with(charSequenceTranslatorArray82);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator86 = unicodeEscaper57.with(charSequenceTranslatorArray82);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator87 = unicodeEscaper54.with(charSequenceTranslatorArray82);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator88 = unicodeEscaper5.with(charSequenceTranslatorArray82);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator89 = unicodeEscaper2.with(charSequenceTranslatorArray82);
java.lang.String str91 = charSequenceTranslator89.translate((java.lang.CharSequence) "61");
java.io.Writer writer93 = null;
// The following exception was thrown during execution in test generation
try {
charSequenceTranslator89.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u0075\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u0075\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030", writer93);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "hi!" + "'", str7, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertEquals("'" + str12 + "' != '" + "hi!" + "'", str12, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertTrue("'" + int19 + "' != '" + 0 + "'", int19 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray26);
org.junit.Assert.assertNotNull(charSequenceTranslator27);
org.junit.Assert.assertNotNull(charSequenceTranslator28);
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertTrue("'" + int35 + "' != '" + 0 + "'", int35 == 0);
org.junit.Assert.assertTrue("'" + boolean38 + "' != '" + false + "'", boolean38 == false);
org.junit.Assert.assertEquals("'" + str40 + "' != '" + "0" + "'", str40, "0");
org.junit.Assert.assertNotNull(unicodeEscaper43);
org.junit.Assert.assertEquals("'" + str45 + "' != '" + "hi!" + "'", str45, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray46);
org.junit.Assert.assertNotNull(charSequenceTranslator47);
org.junit.Assert.assertEquals("'" + str49 + "' != '" + "" + "'", str49, "");
org.junit.Assert.assertEquals("'" + str51 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str51, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper54);
org.junit.Assert.assertNotNull(unicodeEscaper57);
org.junit.Assert.assertNotNull(unicodeEscaper60);
org.junit.Assert.assertNotNull(unicodeEscaper63);
org.junit.Assert.assertNotNull(unicodeEscaper66);
org.junit.Assert.assertEquals("'" + str68 + "' != '" + "hi!" + "'", str68, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper71);
org.junit.Assert.assertTrue("'" + int75 + "' != '" + 0 + "'", int75 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper77);
org.junit.Assert.assertNotNull(unicodeEscaper81);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray82);
org.junit.Assert.assertNotNull(charSequenceTranslator83);
org.junit.Assert.assertNotNull(charSequenceTranslator84);
org.junit.Assert.assertNotNull(charSequenceTranslator85);
org.junit.Assert.assertNotNull(charSequenceTranslator86);
org.junit.Assert.assertNotNull(charSequenceTranslator87);
org.junit.Assert.assertNotNull(charSequenceTranslator88);
org.junit.Assert.assertNotNull(charSequenceTranslator89);
org.junit.Assert.assertEquals("'" + str91 + "' != '" + "\\u0036\\u0031" + "'", str91, "\\u0036\\u0031");
}
@Test
public void test2115() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2115");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (short) 0);
java.io.Writer writer3 = null;
boolean boolean4 = unicodeEscaper1.translate((int) (byte) 10, writer3);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 10, (int) (short) 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) -1, (int) (short) 1);
java.io.Writer writer12 = null;
boolean boolean13 = unicodeEscaper10.translate((int) (byte) 1, writer12);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) -1, (int) (short) -1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str21 = unicodeEscaper19.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str26 = unicodeEscaper24.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper29 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer32 = null;
int int33 = unicodeEscaper29.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer32);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper39 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray40 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper29, unicodeEscaper35, unicodeEscaper36, unicodeEscaper39 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator41 = unicodeEscaper24.with(charSequenceTranslatorArray40);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator42 = unicodeEscaper19.with(charSequenceTranslatorArray40);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper45 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer48 = null;
int int49 = unicodeEscaper45.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer48);
java.io.Writer writer51 = null;
boolean boolean52 = unicodeEscaper45.translate((int) (byte) -1, writer51);
java.lang.String str54 = unicodeEscaper45.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str59 = unicodeEscaper57.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray60 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper45, unicodeEscaper57 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator61 = unicodeEscaper19.with(charSequenceTranslatorArray60);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator62 = unicodeEscaper16.with(charSequenceTranslatorArray60);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper65 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper68 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str70 = unicodeEscaper68.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper73 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str75 = unicodeEscaper73.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper78 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer81 = null;
int int82 = unicodeEscaper78.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer81);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper84 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper85 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper88 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray89 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper78, unicodeEscaper84, unicodeEscaper85, unicodeEscaper88 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator90 = unicodeEscaper73.with(charSequenceTranslatorArray89);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator91 = unicodeEscaper68.with(charSequenceTranslatorArray89);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator92 = unicodeEscaper65.with(charSequenceTranslatorArray89);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator93 = unicodeEscaper16.with(charSequenceTranslatorArray89);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator94 = unicodeEscaper10.with(charSequenceTranslatorArray89);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator95 = unicodeEscaper7.with(charSequenceTranslatorArray89);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator96 = unicodeEscaper1.with(charSequenceTranslatorArray89);
java.io.Writer writer98 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean99 = unicodeEscaper1.translate((int) (short) -1, writer98);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertTrue("'" + boolean4 + "' != '" + false + "'", boolean4 == false);
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertTrue("'" + boolean13 + "' != '" + false + "'", boolean13 == false);
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertNotNull(unicodeEscaper19);
org.junit.Assert.assertEquals("'" + str21 + "' != '" + "hi!" + "'", str21, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertEquals("'" + str26 + "' != '" + "hi!" + "'", str26, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper29);
org.junit.Assert.assertTrue("'" + int33 + "' != '" + 0 + "'", int33 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper35);
org.junit.Assert.assertNotNull(unicodeEscaper39);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray40);
org.junit.Assert.assertNotNull(charSequenceTranslator41);
org.junit.Assert.assertNotNull(charSequenceTranslator42);
org.junit.Assert.assertNotNull(unicodeEscaper45);
org.junit.Assert.assertTrue("'" + int49 + "' != '" + 0 + "'", int49 == 0);
org.junit.Assert.assertTrue("'" + boolean52 + "' != '" + false + "'", boolean52 == false);
org.junit.Assert.assertEquals("'" + str54 + "' != '" + "0" + "'", str54, "0");
org.junit.Assert.assertNotNull(unicodeEscaper57);
org.junit.Assert.assertEquals("'" + str59 + "' != '" + "hi!" + "'", str59, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray60);
org.junit.Assert.assertNotNull(charSequenceTranslator61);
org.junit.Assert.assertNotNull(charSequenceTranslator62);
org.junit.Assert.assertNotNull(unicodeEscaper65);
org.junit.Assert.assertNotNull(unicodeEscaper68);
org.junit.Assert.assertEquals("'" + str70 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str70, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper73);
org.junit.Assert.assertEquals("'" + str75 + "' != '" + "hi!" + "'", str75, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper78);
org.junit.Assert.assertTrue("'" + int82 + "' != '" + 0 + "'", int82 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper84);
org.junit.Assert.assertNotNull(unicodeEscaper88);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray89);
org.junit.Assert.assertNotNull(charSequenceTranslator90);
org.junit.Assert.assertNotNull(charSequenceTranslator91);
org.junit.Assert.assertNotNull(charSequenceTranslator92);
org.junit.Assert.assertNotNull(charSequenceTranslator93);
org.junit.Assert.assertNotNull(charSequenceTranslator94);
org.junit.Assert.assertNotNull(charSequenceTranslator95);
org.junit.Assert.assertNotNull(charSequenceTranslator96);
}
@Test
public void test2116() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2116");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 0, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str10 = unicodeEscaper8.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer16 = null;
int int17 = unicodeEscaper13.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer16);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper23 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray24 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper13, unicodeEscaper19, unicodeEscaper20, unicodeEscaper23 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator25 = unicodeEscaper8.with(charSequenceTranslatorArray24);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator26 = unicodeEscaper5.with(charSequenceTranslatorArray24);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper29 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, (int) 'a');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str34 = unicodeEscaper32.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str39 = unicodeEscaper37.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper42 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer45 = null;
int int46 = unicodeEscaper42.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer45);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper48 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper49 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper52 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray53 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper42, unicodeEscaper48, unicodeEscaper49, unicodeEscaper52 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator54 = unicodeEscaper37.with(charSequenceTranslatorArray53);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator55 = unicodeEscaper32.with(charSequenceTranslatorArray53);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator56 = unicodeEscaper29.with(charSequenceTranslatorArray53);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator57 = charSequenceTranslator26.with(charSequenceTranslatorArray53);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator58 = unicodeEscaper2.with(charSequenceTranslatorArray53);
java.io.Writer writer60 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0036\\u0038\\u005C\\u0075\\u0030\\u0030\\u0036\\u0039\\u005C\\u0075\\u0030\\u0030\\u0032\\u0031", writer60);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertEquals("'" + str10 + "' != '" + "hi!" + "'", str10, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertTrue("'" + int17 + "' != '" + 0 + "'", int17 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper19);
org.junit.Assert.assertNotNull(unicodeEscaper23);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray24);
org.junit.Assert.assertNotNull(charSequenceTranslator25);
org.junit.Assert.assertNotNull(charSequenceTranslator26);
org.junit.Assert.assertNotNull(unicodeEscaper29);
org.junit.Assert.assertNotNull(unicodeEscaper32);
org.junit.Assert.assertEquals("'" + str34 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str34, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper37);
org.junit.Assert.assertEquals("'" + str39 + "' != '" + "hi!" + "'", str39, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper42);
org.junit.Assert.assertTrue("'" + int46 + "' != '" + 0 + "'", int46 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper48);
org.junit.Assert.assertNotNull(unicodeEscaper52);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray53);
org.junit.Assert.assertNotNull(charSequenceTranslator54);
org.junit.Assert.assertNotNull(charSequenceTranslator55);
org.junit.Assert.assertNotNull(charSequenceTranslator56);
org.junit.Assert.assertNotNull(charSequenceTranslator57);
org.junit.Assert.assertNotNull(charSequenceTranslator58);
}
@Test
public void test2117() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2117");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, (int) (byte) -1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(10, 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) '4', (int) (byte) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str13 = unicodeEscaper11.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str18 = unicodeEscaper16.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer24 = null;
int int25 = unicodeEscaper21.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer24);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray32 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper21, unicodeEscaper27, unicodeEscaper28, unicodeEscaper31 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper16.with(charSequenceTranslatorArray32);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator34 = unicodeEscaper11.with(charSequenceTranslatorArray32);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer40 = null;
int int41 = unicodeEscaper37.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer40);
java.io.Writer writer43 = null;
boolean boolean44 = unicodeEscaper37.translate((int) (byte) -1, writer43);
java.lang.String str46 = unicodeEscaper37.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper49 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str51 = unicodeEscaper49.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray52 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper37, unicodeEscaper49 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator53 = unicodeEscaper11.with(charSequenceTranslatorArray52);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator54 = unicodeEscaper8.with(charSequenceTranslatorArray52);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator55 = unicodeEscaper5.with(charSequenceTranslatorArray52);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator56 = unicodeEscaper2.with(charSequenceTranslatorArray52);
java.lang.String str58 = unicodeEscaper2.translate((java.lang.CharSequence) "6\\\\u00750031");
java.io.Writer writer61 = null;
// The following exception was thrown during execution in test generation
try {
int int62 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030", 1, writer61);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertEquals("'" + str13 + "' != '" + "hi!" + "'", str13, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertEquals("'" + str18 + "' != '" + "hi!" + "'", str18, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertTrue("'" + int25 + "' != '" + 0 + "'", int25 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
org.junit.Assert.assertNotNull(charSequenceTranslator34);
org.junit.Assert.assertNotNull(unicodeEscaper37);
org.junit.Assert.assertTrue("'" + int41 + "' != '" + 0 + "'", int41 == 0);
org.junit.Assert.assertTrue("'" + boolean44 + "' != '" + false + "'", boolean44 == false);
org.junit.Assert.assertEquals("'" + str46 + "' != '" + "0" + "'", str46, "0");
org.junit.Assert.assertNotNull(unicodeEscaper49);
org.junit.Assert.assertEquals("'" + str51 + "' != '" + "hi!" + "'", str51, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray52);
org.junit.Assert.assertNotNull(charSequenceTranslator53);
org.junit.Assert.assertNotNull(charSequenceTranslator54);
org.junit.Assert.assertNotNull(charSequenceTranslator55);
org.junit.Assert.assertNotNull(charSequenceTranslator56);
org.junit.Assert.assertEquals("'" + str58 + "' != '" + "\\u0036\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0031" + "'", str58, "\\u0036\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0031");
}
@Test
public void test2118() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2118");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 10, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper4 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer9 = null;
boolean boolean10 = unicodeEscaper7.translate((int) (short) 0, writer9);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray14 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper7, unicodeEscaper11, unicodeEscaper13 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator15 = unicodeEscaper4.with(charSequenceTranslatorArray14);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator16 = unicodeEscaper2.with(charSequenceTranslatorArray14);
java.io.Writer writer19 = null;
int int20 = unicodeEscaper2.translate((java.lang.CharSequence) "FFFFFFFF", (int) (short) 1, writer19);
java.io.Writer writer22 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "6\\\\u00750031", writer22);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper4);
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertTrue("'" + boolean10 + "' != '" + false + "'", boolean10 == false);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray14);
org.junit.Assert.assertNotNull(charSequenceTranslator15);
org.junit.Assert.assertNotNull(charSequenceTranslator16);
org.junit.Assert.assertTrue("'" + int20 + "' != '" + 0 + "'", int20 == 0);
}
@Test
public void test2119() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2119");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (byte) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str10 = unicodeEscaper8.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str15 = unicodeEscaper13.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer21 = null;
int int22 = unicodeEscaper18.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer21);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray29 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper18, unicodeEscaper24, unicodeEscaper25, unicodeEscaper28 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator30 = unicodeEscaper13.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper8.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator32 = unicodeEscaper5.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str37 = unicodeEscaper35.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer43 = null;
int int44 = unicodeEscaper40.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer43);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper46 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper47 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper50 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray51 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper40, unicodeEscaper46, unicodeEscaper47, unicodeEscaper50 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator52 = unicodeEscaper35.with(charSequenceTranslatorArray51);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper55 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str57 = unicodeEscaper55.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper60 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str62 = unicodeEscaper60.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper65 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer68 = null;
int int69 = unicodeEscaper65.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer68);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper71 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper72 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper75 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray76 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper65, unicodeEscaper71, unicodeEscaper72, unicodeEscaper75 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator77 = unicodeEscaper60.with(charSequenceTranslatorArray76);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator78 = unicodeEscaper55.with(charSequenceTranslatorArray76);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator79 = charSequenceTranslator52.with(charSequenceTranslatorArray76);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator80 = unicodeEscaper5.with(charSequenceTranslatorArray76);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator81 = unicodeEscaper2.with(charSequenceTranslatorArray76);
java.lang.Class<?> wildcardClass82 = charSequenceTranslator81.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertEquals("'" + str10 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str10, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertEquals("'" + str15 + "' != '" + "hi!" + "'", str15, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertTrue("'" + int22 + "' != '" + 0 + "'", int22 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray29);
org.junit.Assert.assertNotNull(charSequenceTranslator30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
org.junit.Assert.assertNotNull(charSequenceTranslator32);
org.junit.Assert.assertNotNull(unicodeEscaper35);
org.junit.Assert.assertEquals("'" + str37 + "' != '" + "hi!" + "'", str37, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper40);
org.junit.Assert.assertTrue("'" + int44 + "' != '" + 0 + "'", int44 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper46);
org.junit.Assert.assertNotNull(unicodeEscaper50);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray51);
org.junit.Assert.assertNotNull(charSequenceTranslator52);
org.junit.Assert.assertNotNull(unicodeEscaper55);
org.junit.Assert.assertEquals("'" + str57 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str57, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper60);
org.junit.Assert.assertEquals("'" + str62 + "' != '" + "hi!" + "'", str62, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper65);
org.junit.Assert.assertTrue("'" + int69 + "' != '" + 0 + "'", int69 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper71);
org.junit.Assert.assertNotNull(unicodeEscaper75);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray76);
org.junit.Assert.assertNotNull(charSequenceTranslator77);
org.junit.Assert.assertNotNull(charSequenceTranslator78);
org.junit.Assert.assertNotNull(charSequenceTranslator79);
org.junit.Assert.assertNotNull(charSequenceTranslator80);
org.junit.Assert.assertNotNull(charSequenceTranslator81);
org.junit.Assert.assertNotNull(wildcardClass82);
}
@Test
public void test2120() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2120");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 0, (-1));
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "6\\u0031", 0, writer5);
java.io.Writer writer8 = null;
boolean boolean9 = unicodeEscaper2.translate(0, writer8);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
org.junit.Assert.assertTrue("'" + boolean9 + "' != '" + false + "'", boolean9 == false);
}
@Test
public void test2121() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2121");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 10, 0);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate(0, writer4);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer10 = null;
boolean boolean11 = unicodeEscaper8.translate((int) (byte) 100, writer10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str19 = unicodeEscaper17.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer25 = null;
int int26 = unicodeEscaper22.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer25);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper29 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray33 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper22, unicodeEscaper28, unicodeEscaper29, unicodeEscaper32 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator34 = unicodeEscaper17.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator35 = unicodeEscaper14.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator36 = unicodeEscaper8.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator37 = unicodeEscaper2.with(charSequenceTranslatorArray33);
java.lang.Class<?> wildcardClass38 = charSequenceTranslatorArray33.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertTrue("'" + boolean11 + "' != '" + false + "'", boolean11 == false);
org.junit.Assert.assertNotNull(unicodeEscaper14);
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertEquals("'" + str19 + "' != '" + "hi!" + "'", str19, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertTrue("'" + int26 + "' != '" + 0 + "'", int26 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(unicodeEscaper32);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray33);
org.junit.Assert.assertNotNull(charSequenceTranslator34);
org.junit.Assert.assertNotNull(charSequenceTranslator35);
org.junit.Assert.assertNotNull(charSequenceTranslator36);
org.junit.Assert.assertNotNull(charSequenceTranslator37);
org.junit.Assert.assertNotNull(wildcardClass38);
}
@Test
public void test2122() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2122");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) '4', (int) (byte) -1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str10 = unicodeEscaper8.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str15 = unicodeEscaper13.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer21 = null;
int int22 = unicodeEscaper18.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer21);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray29 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper18, unicodeEscaper24, unicodeEscaper25, unicodeEscaper28 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator30 = unicodeEscaper13.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper8.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator32 = unicodeEscaper5.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper34 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str39 = unicodeEscaper37.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper42 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str44 = unicodeEscaper42.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper47 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer50 = null;
int int51 = unicodeEscaper47.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer50);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper53 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper54 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray58 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper47, unicodeEscaper53, unicodeEscaper54, unicodeEscaper57 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator59 = unicodeEscaper42.with(charSequenceTranslatorArray58);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator60 = unicodeEscaper37.with(charSequenceTranslatorArray58);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator61 = unicodeEscaper34.with(charSequenceTranslatorArray58);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator62 = charSequenceTranslator32.with(charSequenceTranslatorArray58);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator63 = unicodeEscaper2.with(charSequenceTranslatorArray58);
java.io.Writer writer66 = null;
// The following exception was thrown during execution in test generation
try {
int int67 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0032\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033", 1, writer66);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertEquals("'" + str10 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str10, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertEquals("'" + str15 + "' != '" + "hi!" + "'", str15, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertTrue("'" + int22 + "' != '" + 0 + "'", int22 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray29);
org.junit.Assert.assertNotNull(charSequenceTranslator30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
org.junit.Assert.assertNotNull(charSequenceTranslator32);
org.junit.Assert.assertNotNull(unicodeEscaper34);
org.junit.Assert.assertNotNull(unicodeEscaper37);
org.junit.Assert.assertEquals("'" + str39 + "' != '" + "hi!" + "'", str39, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper42);
org.junit.Assert.assertEquals("'" + str44 + "' != '" + "hi!" + "'", str44, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper47);
org.junit.Assert.assertTrue("'" + int51 + "' != '" + 0 + "'", int51 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper53);
org.junit.Assert.assertNotNull(unicodeEscaper57);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray58);
org.junit.Assert.assertNotNull(charSequenceTranslator59);
org.junit.Assert.assertNotNull(charSequenceTranslator60);
org.junit.Assert.assertNotNull(charSequenceTranslator61);
org.junit.Assert.assertNotNull(charSequenceTranslator62);
org.junit.Assert.assertNotNull(charSequenceTranslator63);
}
@Test
public void test2123() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2123");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) -1, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 10, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer12 = null;
boolean boolean13 = unicodeEscaper10.translate((int) (short) 0, writer12);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray17 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper10, unicodeEscaper14, unicodeEscaper16 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator18 = unicodeEscaper7.with(charSequenceTranslatorArray17);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator19 = unicodeEscaper5.with(charSequenceTranslatorArray17);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator20 = unicodeEscaper2.with(charSequenceTranslatorArray17);
java.lang.String str22 = charSequenceTranslator20.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750031");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertTrue("'" + boolean13 + "' != '" + false + "'", boolean13 == false);
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray17);
org.junit.Assert.assertNotNull(charSequenceTranslator18);
org.junit.Assert.assertNotNull(charSequenceTranslator19);
org.junit.Assert.assertNotNull(charSequenceTranslator20);
org.junit.Assert.assertEquals("'" + str22 + "' != '" + "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0031" + "'", str22, "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0031");
}
@Test
public void test2124() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2124");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 1, 1);
java.io.Writer writer5 = null;
// The following exception was thrown during execution in test generation
try {
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030", (int) (byte) 1, writer5);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2125() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2125");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 10, (int) (short) 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) -1, (int) (short) 1);
java.io.Writer writer7 = null;
boolean boolean8 = unicodeEscaper5.translate((int) (byte) 1, writer7);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) -1, (int) (short) -1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str16 = unicodeEscaper14.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str21 = unicodeEscaper19.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer27 = null;
int int28 = unicodeEscaper24.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer27);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper34 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray35 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper24, unicodeEscaper30, unicodeEscaper31, unicodeEscaper34 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator36 = unicodeEscaper19.with(charSequenceTranslatorArray35);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator37 = unicodeEscaper14.with(charSequenceTranslatorArray35);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer43 = null;
int int44 = unicodeEscaper40.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer43);
java.io.Writer writer46 = null;
boolean boolean47 = unicodeEscaper40.translate((int) (byte) -1, writer46);
java.lang.String str49 = unicodeEscaper40.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper52 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str54 = unicodeEscaper52.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray55 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper40, unicodeEscaper52 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator56 = unicodeEscaper14.with(charSequenceTranslatorArray55);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator57 = unicodeEscaper11.with(charSequenceTranslatorArray55);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper60 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper63 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str65 = unicodeEscaper63.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper68 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str70 = unicodeEscaper68.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper73 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer76 = null;
int int77 = unicodeEscaper73.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer76);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper79 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper80 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper83 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray84 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper73, unicodeEscaper79, unicodeEscaper80, unicodeEscaper83 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator85 = unicodeEscaper68.with(charSequenceTranslatorArray84);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator86 = unicodeEscaper63.with(charSequenceTranslatorArray84);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator87 = unicodeEscaper60.with(charSequenceTranslatorArray84);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator88 = unicodeEscaper11.with(charSequenceTranslatorArray84);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator89 = unicodeEscaper5.with(charSequenceTranslatorArray84);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator90 = unicodeEscaper2.with(charSequenceTranslatorArray84);
java.lang.Class<?> wildcardClass91 = charSequenceTranslator90.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertTrue("'" + boolean8 + "' != '" + false + "'", boolean8 == false);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertNotNull(unicodeEscaper14);
org.junit.Assert.assertEquals("'" + str16 + "' != '" + "hi!" + "'", str16, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper19);
org.junit.Assert.assertEquals("'" + str21 + "' != '" + "hi!" + "'", str21, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertTrue("'" + int28 + "' != '" + 0 + "'", int28 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertNotNull(unicodeEscaper34);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray35);
org.junit.Assert.assertNotNull(charSequenceTranslator36);
org.junit.Assert.assertNotNull(charSequenceTranslator37);
org.junit.Assert.assertNotNull(unicodeEscaper40);
org.junit.Assert.assertTrue("'" + int44 + "' != '" + 0 + "'", int44 == 0);
org.junit.Assert.assertTrue("'" + boolean47 + "' != '" + false + "'", boolean47 == false);
org.junit.Assert.assertEquals("'" + str49 + "' != '" + "0" + "'", str49, "0");
org.junit.Assert.assertNotNull(unicodeEscaper52);
org.junit.Assert.assertEquals("'" + str54 + "' != '" + "hi!" + "'", str54, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray55);
org.junit.Assert.assertNotNull(charSequenceTranslator56);
org.junit.Assert.assertNotNull(charSequenceTranslator57);
org.junit.Assert.assertNotNull(unicodeEscaper60);
org.junit.Assert.assertNotNull(unicodeEscaper63);
org.junit.Assert.assertEquals("'" + str65 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str65, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper68);
org.junit.Assert.assertEquals("'" + str70 + "' != '" + "hi!" + "'", str70, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper73);
org.junit.Assert.assertTrue("'" + int77 + "' != '" + 0 + "'", int77 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper79);
org.junit.Assert.assertNotNull(unicodeEscaper83);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray84);
org.junit.Assert.assertNotNull(charSequenceTranslator85);
org.junit.Assert.assertNotNull(charSequenceTranslator86);
org.junit.Assert.assertNotNull(charSequenceTranslator87);
org.junit.Assert.assertNotNull(charSequenceTranslator88);
org.junit.Assert.assertNotNull(charSequenceTranslator89);
org.junit.Assert.assertNotNull(charSequenceTranslator90);
org.junit.Assert.assertNotNull(wildcardClass91);
}
@Test
public void test2126() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2126");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 0, (int) (short) -1);
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0033\\u0034", 10, writer5);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
}
@Test
public void test2127() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2127");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str12 = unicodeEscaper10.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer18 = null;
int int19 = unicodeEscaper15.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer18);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray26 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper15, unicodeEscaper21, unicodeEscaper22, unicodeEscaper25 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator27 = unicodeEscaper10.with(charSequenceTranslatorArray26);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator28 = unicodeEscaper5.with(charSequenceTranslatorArray26);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str33 = unicodeEscaper31.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str38 = unicodeEscaper36.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer44 = null;
int int45 = unicodeEscaper41.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer44);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper47 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper48 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper51 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray52 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper41, unicodeEscaper47, unicodeEscaper48, unicodeEscaper51 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator53 = unicodeEscaper36.with(charSequenceTranslatorArray52);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator54 = unicodeEscaper31.with(charSequenceTranslatorArray52);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator55 = charSequenceTranslator28.with(charSequenceTranslatorArray52);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator56 = unicodeEscaper2.with(charSequenceTranslatorArray52);
java.io.Writer writer58 = null;
boolean boolean59 = unicodeEscaper2.translate(0, writer58);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "hi!" + "'", str7, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertEquals("'" + str12 + "' != '" + "hi!" + "'", str12, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertTrue("'" + int19 + "' != '" + 0 + "'", int19 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray26);
org.junit.Assert.assertNotNull(charSequenceTranslator27);
org.junit.Assert.assertNotNull(charSequenceTranslator28);
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertEquals("'" + str33 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str33, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper36);
org.junit.Assert.assertEquals("'" + str38 + "' != '" + "hi!" + "'", str38, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper41);
org.junit.Assert.assertTrue("'" + int45 + "' != '" + 0 + "'", int45 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper47);
org.junit.Assert.assertNotNull(unicodeEscaper51);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray52);
org.junit.Assert.assertNotNull(charSequenceTranslator53);
org.junit.Assert.assertNotNull(charSequenceTranslator54);
org.junit.Assert.assertNotNull(charSequenceTranslator55);
org.junit.Assert.assertNotNull(charSequenceTranslator56);
org.junit.Assert.assertTrue("'" + boolean59 + "' != '" + false + "'", boolean59 == false);
}
@Test
public void test2128() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2128");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 10, 0);
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2129() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2129");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer10 = null;
int int11 = unicodeEscaper7.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray18 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper7, unicodeEscaper13, unicodeEscaper14, unicodeEscaper17 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator19 = unicodeEscaper2.with(charSequenceTranslatorArray18);
java.lang.Class<?> wildcardClass20 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "hi!" + "'", str4, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertTrue("'" + int11 + "' != '" + 0 + "'", int11 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray18);
org.junit.Assert.assertNotNull(charSequenceTranslator19);
org.junit.Assert.assertNotNull(wildcardClass20);
}
@Test
public void test2130() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2130");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) 'a', (int) (byte) 10);
java.io.Writer writer4 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\u0032\\u0033", writer4);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2131() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2131");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str12 = unicodeEscaper10.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer18 = null;
int int19 = unicodeEscaper15.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer18);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray26 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper15, unicodeEscaper21, unicodeEscaper22, unicodeEscaper25 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator27 = unicodeEscaper10.with(charSequenceTranslatorArray26);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator28 = unicodeEscaper5.with(charSequenceTranslatorArray26);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator29 = unicodeEscaper2.with(charSequenceTranslatorArray26);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str37 = unicodeEscaper35.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str42 = unicodeEscaper40.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper45 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer48 = null;
int int49 = unicodeEscaper45.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer48);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper51 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper52 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper55 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray56 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper45, unicodeEscaper51, unicodeEscaper52, unicodeEscaper55 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator57 = unicodeEscaper40.with(charSequenceTranslatorArray56);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator58 = unicodeEscaper35.with(charSequenceTranslatorArray56);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator59 = unicodeEscaper32.with(charSequenceTranslatorArray56);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper61 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper64 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str66 = unicodeEscaper64.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper69 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str71 = unicodeEscaper69.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper74 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer77 = null;
int int78 = unicodeEscaper74.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer77);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper80 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper81 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper84 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray85 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper74, unicodeEscaper80, unicodeEscaper81, unicodeEscaper84 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator86 = unicodeEscaper69.with(charSequenceTranslatorArray85);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator87 = unicodeEscaper64.with(charSequenceTranslatorArray85);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator88 = unicodeEscaper61.with(charSequenceTranslatorArray85);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator89 = charSequenceTranslator59.with(charSequenceTranslatorArray85);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator90 = unicodeEscaper2.with(charSequenceTranslatorArray85);
java.io.Writer writer92 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750031", writer92);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str7, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertEquals("'" + str12 + "' != '" + "hi!" + "'", str12, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertTrue("'" + int19 + "' != '" + 0 + "'", int19 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray26);
org.junit.Assert.assertNotNull(charSequenceTranslator27);
org.junit.Assert.assertNotNull(charSequenceTranslator28);
org.junit.Assert.assertNotNull(charSequenceTranslator29);
org.junit.Assert.assertNotNull(unicodeEscaper32);
org.junit.Assert.assertNotNull(unicodeEscaper35);
org.junit.Assert.assertEquals("'" + str37 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str37, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper40);
org.junit.Assert.assertEquals("'" + str42 + "' != '" + "hi!" + "'", str42, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper45);
org.junit.Assert.assertTrue("'" + int49 + "' != '" + 0 + "'", int49 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper51);
org.junit.Assert.assertNotNull(unicodeEscaper55);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray56);
org.junit.Assert.assertNotNull(charSequenceTranslator57);
org.junit.Assert.assertNotNull(charSequenceTranslator58);
org.junit.Assert.assertNotNull(charSequenceTranslator59);
org.junit.Assert.assertNotNull(unicodeEscaper61);
org.junit.Assert.assertNotNull(unicodeEscaper64);
org.junit.Assert.assertEquals("'" + str66 + "' != '" + "hi!" + "'", str66, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper69);
org.junit.Assert.assertEquals("'" + str71 + "' != '" + "hi!" + "'", str71, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper74);
org.junit.Assert.assertTrue("'" + int78 + "' != '" + 0 + "'", int78 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper80);
org.junit.Assert.assertNotNull(unicodeEscaper84);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray85);
org.junit.Assert.assertNotNull(charSequenceTranslator86);
org.junit.Assert.assertNotNull(charSequenceTranslator87);
org.junit.Assert.assertNotNull(charSequenceTranslator88);
org.junit.Assert.assertNotNull(charSequenceTranslator89);
org.junit.Assert.assertNotNull(charSequenceTranslator90);
}
@Test
public void test2132() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2132");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 0, (-1));
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, (int) 'a');
java.lang.String str10 = unicodeEscaper8.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, 1);
java.lang.String str15 = unicodeEscaper13.translate((java.lang.CharSequence) "FFFFFFFF");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str20 = unicodeEscaper18.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper23 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str25 = unicodeEscaper23.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer31 = null;
int int32 = unicodeEscaper28.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer31);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper34 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper38 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray39 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper28, unicodeEscaper34, unicodeEscaper35, unicodeEscaper38 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator40 = unicodeEscaper23.with(charSequenceTranslatorArray39);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator41 = unicodeEscaper18.with(charSequenceTranslatorArray39);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator42 = unicodeEscaper13.with(charSequenceTranslatorArray39);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator43 = unicodeEscaper8.with(charSequenceTranslatorArray39);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper5.with(charSequenceTranslatorArray39);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator45 = unicodeEscaper2.with(charSequenceTranslatorArray39);
java.lang.String str47 = charSequenceTranslator45.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertEquals("'" + str10 + "' != '" + "0" + "'", str10, "0");
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertEquals("'" + str15 + "' != '" + "FFFFFFFF" + "'", str15, "FFFFFFFF");
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertEquals("'" + str20 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str20, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper23);
org.junit.Assert.assertEquals("'" + str25 + "' != '" + "hi!" + "'", str25, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertTrue("'" + int32 + "' != '" + 0 + "'", int32 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper34);
org.junit.Assert.assertNotNull(unicodeEscaper38);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray39);
org.junit.Assert.assertNotNull(charSequenceTranslator40);
org.junit.Assert.assertNotNull(charSequenceTranslator41);
org.junit.Assert.assertNotNull(charSequenceTranslator42);
org.junit.Assert.assertNotNull(charSequenceTranslator43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertNotNull(charSequenceTranslator45);
org.junit.Assert.assertEquals("'" + str47 + "' != '" + "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0037\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030" + "'", str47, "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0037\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030");
}
@Test
public void test2133() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2133");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(10, (-1));
java.lang.Class<?> wildcardClass3 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(wildcardClass3);
}
@Test
public void test2134() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2134");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) -1, (int) (byte) 1);
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "\\u0031");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer13 = null;
int int14 = unicodeEscaper10.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer13);
java.lang.CharSequence charSequence15 = null;
java.lang.String str16 = unicodeEscaper10.translate(charSequence15);
java.lang.String str18 = unicodeEscaper10.translate((java.lang.CharSequence) "\\\\u00750030");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str26 = unicodeEscaper24.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper29 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str31 = unicodeEscaper29.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper34 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer37 = null;
int int38 = unicodeEscaper34.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer37);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper44 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray45 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper34, unicodeEscaper40, unicodeEscaper41, unicodeEscaper44 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator46 = unicodeEscaper29.with(charSequenceTranslatorArray45);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator47 = unicodeEscaper24.with(charSequenceTranslatorArray45);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator48 = unicodeEscaper21.with(charSequenceTranslatorArray45);
java.lang.String str50 = charSequenceTranslator48.translate((java.lang.CharSequence) "23");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper53 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str55 = unicodeEscaper53.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper58 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str60 = unicodeEscaper58.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper63 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer66 = null;
int int67 = unicodeEscaper63.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer66);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper69 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper70 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper73 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray74 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper63, unicodeEscaper69, unicodeEscaper70, unicodeEscaper73 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator75 = unicodeEscaper58.with(charSequenceTranslatorArray74);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator76 = unicodeEscaper53.with(charSequenceTranslatorArray74);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper79 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer82 = null;
int int83 = unicodeEscaper79.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer82);
java.io.Writer writer85 = null;
boolean boolean86 = unicodeEscaper79.translate((int) (byte) -1, writer85);
java.lang.String str88 = unicodeEscaper79.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper91 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str93 = unicodeEscaper91.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray94 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper79, unicodeEscaper91 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator95 = unicodeEscaper53.with(charSequenceTranslatorArray94);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator96 = charSequenceTranslator48.with(charSequenceTranslatorArray94);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator97 = unicodeEscaper10.with(charSequenceTranslatorArray94);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator98 = unicodeEscaper5.with(charSequenceTranslatorArray94);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator99 = unicodeEscaper2.with(charSequenceTranslatorArray94);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031" + "'", str7, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertTrue("'" + int14 + "' != '" + 0 + "'", int14 == 0);
org.junit.Assert.assertNull(str16);
org.junit.Assert.assertEquals("'" + str18 + "' != '" + "\\\\u00750030" + "'", str18, "\\\\u00750030");
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertEquals("'" + str26 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str26, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper29);
org.junit.Assert.assertEquals("'" + str31 + "' != '" + "hi!" + "'", str31, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper34);
org.junit.Assert.assertTrue("'" + int38 + "' != '" + 0 + "'", int38 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper40);
org.junit.Assert.assertNotNull(unicodeEscaper44);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray45);
org.junit.Assert.assertNotNull(charSequenceTranslator46);
org.junit.Assert.assertNotNull(charSequenceTranslator47);
org.junit.Assert.assertNotNull(charSequenceTranslator48);
org.junit.Assert.assertEquals("'" + str50 + "' != '" + "\\u0032\\u0033" + "'", str50, "\\u0032\\u0033");
org.junit.Assert.assertNotNull(unicodeEscaper53);
org.junit.Assert.assertEquals("'" + str55 + "' != '" + "hi!" + "'", str55, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper58);
org.junit.Assert.assertEquals("'" + str60 + "' != '" + "hi!" + "'", str60, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper63);
org.junit.Assert.assertTrue("'" + int67 + "' != '" + 0 + "'", int67 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper69);
org.junit.Assert.assertNotNull(unicodeEscaper73);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray74);
org.junit.Assert.assertNotNull(charSequenceTranslator75);
org.junit.Assert.assertNotNull(charSequenceTranslator76);
org.junit.Assert.assertNotNull(unicodeEscaper79);
org.junit.Assert.assertTrue("'" + int83 + "' != '" + 0 + "'", int83 == 0);
org.junit.Assert.assertTrue("'" + boolean86 + "' != '" + false + "'", boolean86 == false);
org.junit.Assert.assertEquals("'" + str88 + "' != '" + "0" + "'", str88, "0");
org.junit.Assert.assertNotNull(unicodeEscaper91);
org.junit.Assert.assertEquals("'" + str93 + "' != '" + "hi!" + "'", str93, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray94);
org.junit.Assert.assertNotNull(charSequenceTranslator95);
org.junit.Assert.assertNotNull(charSequenceTranslator96);
org.junit.Assert.assertNotNull(charSequenceTranslator97);
org.junit.Assert.assertNotNull(charSequenceTranslator98);
org.junit.Assert.assertNotNull(charSequenceTranslator99);
}
@Test
public void test2135() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2135");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) 'a', (int) 'a');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str10 = unicodeEscaper8.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str15 = unicodeEscaper13.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer21 = null;
int int22 = unicodeEscaper18.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer21);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray29 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper18, unicodeEscaper24, unicodeEscaper25, unicodeEscaper28 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator30 = unicodeEscaper13.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper8.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper33 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer38 = null;
boolean boolean39 = unicodeEscaper36.translate((int) (short) 0, writer38);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper42 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray43 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper36, unicodeEscaper40, unicodeEscaper42 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper33.with(charSequenceTranslatorArray43);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator45 = charSequenceTranslator31.with(charSequenceTranslatorArray43);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator46 = unicodeEscaper5.with(charSequenceTranslatorArray43);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator47 = unicodeEscaper2.with(charSequenceTranslatorArray43);
java.lang.Class<?> wildcardClass48 = charSequenceTranslator47.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertEquals("'" + str10 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str10, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertEquals("'" + str15 + "' != '" + "hi!" + "'", str15, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertTrue("'" + int22 + "' != '" + 0 + "'", int22 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray29);
org.junit.Assert.assertNotNull(charSequenceTranslator30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
org.junit.Assert.assertNotNull(unicodeEscaper33);
org.junit.Assert.assertNotNull(unicodeEscaper36);
org.junit.Assert.assertTrue("'" + boolean39 + "' != '" + false + "'", boolean39 == false);
org.junit.Assert.assertNotNull(unicodeEscaper42);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertNotNull(charSequenceTranslator45);
org.junit.Assert.assertNotNull(charSequenceTranslator46);
org.junit.Assert.assertNotNull(charSequenceTranslator47);
org.junit.Assert.assertNotNull(wildcardClass48);
}
@Test
public void test2136() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2136");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 10, 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 1, (int) (byte) 10);
java.lang.String str10 = unicodeEscaper8.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0036\\u0038\\u005C\\u0075\\u0030\\u0030\\u0036\\u0039\\u005C\\u0075\\u0030\\u0030\\u0032\\u0031");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(0, (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, (int) 'a');
java.lang.String str18 = unicodeEscaper16.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, 1);
java.lang.String str23 = unicodeEscaper21.translate((java.lang.CharSequence) "FFFFFFFF");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str28 = unicodeEscaper26.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str33 = unicodeEscaper31.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer39 = null;
int int40 = unicodeEscaper36.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer39);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper42 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper43 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper46 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray47 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper36, unicodeEscaper42, unicodeEscaper43, unicodeEscaper46 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator48 = unicodeEscaper31.with(charSequenceTranslatorArray47);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator49 = unicodeEscaper26.with(charSequenceTranslatorArray47);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator50 = unicodeEscaper21.with(charSequenceTranslatorArray47);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator51 = unicodeEscaper16.with(charSequenceTranslatorArray47);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator52 = unicodeEscaper13.with(charSequenceTranslatorArray47);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator53 = unicodeEscaper8.with(charSequenceTranslatorArray47);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator54 = unicodeEscaper5.with(charSequenceTranslatorArray47);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator55 = unicodeEscaper2.with(charSequenceTranslatorArray47);
java.io.Writer writer57 = null;
boolean boolean58 = unicodeEscaper2.translate(0, writer57);
java.io.Writer writer61 = null;
// The following exception was thrown during execution in test generation
try {
int int62 = unicodeEscaper2.translate((java.lang.CharSequence) "6\\\\u00750031", (int) '4', writer61);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: 52");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertEquals("'" + str10 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0038\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0039\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031" + "'", str10, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0038\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0039\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertEquals("'" + str18 + "' != '" + "0" + "'", str18, "0");
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertEquals("'" + str23 + "' != '" + "FFFFFFFF" + "'", str23, "FFFFFFFF");
org.junit.Assert.assertNotNull(unicodeEscaper26);
org.junit.Assert.assertEquals("'" + str28 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str28, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertEquals("'" + str33 + "' != '" + "hi!" + "'", str33, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper36);
org.junit.Assert.assertTrue("'" + int40 + "' != '" + 0 + "'", int40 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper42);
org.junit.Assert.assertNotNull(unicodeEscaper46);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray47);
org.junit.Assert.assertNotNull(charSequenceTranslator48);
org.junit.Assert.assertNotNull(charSequenceTranslator49);
org.junit.Assert.assertNotNull(charSequenceTranslator50);
org.junit.Assert.assertNotNull(charSequenceTranslator51);
org.junit.Assert.assertNotNull(charSequenceTranslator52);
org.junit.Assert.assertNotNull(charSequenceTranslator53);
org.junit.Assert.assertNotNull(charSequenceTranslator54);
org.junit.Assert.assertNotNull(charSequenceTranslator55);
org.junit.Assert.assertTrue("'" + boolean58 + "' != '" + false + "'", boolean58 == false);
}
@Test
public void test2137() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2137");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) ' ', (int) ' ');
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (short) 0, writer4);
java.lang.String str7 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper9 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 100, (int) (short) 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above(100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str22 = unicodeEscaper20.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str27 = unicodeEscaper25.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer33 = null;
int int34 = unicodeEscaper30.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer33);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray41 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper30, unicodeEscaper36, unicodeEscaper37, unicodeEscaper40 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator42 = unicodeEscaper25.with(charSequenceTranslatorArray41);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator43 = unicodeEscaper20.with(charSequenceTranslatorArray41);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper17.with(charSequenceTranslatorArray41);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper47 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str49 = unicodeEscaper47.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper52 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer55 = null;
int int56 = unicodeEscaper52.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer55);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper58 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper59 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper62 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray63 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper52, unicodeEscaper58, unicodeEscaper59, unicodeEscaper62 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator64 = unicodeEscaper47.with(charSequenceTranslatorArray63);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper67 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str69 = unicodeEscaper67.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper72 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str74 = unicodeEscaper72.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper77 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer80 = null;
int int81 = unicodeEscaper77.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer80);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper83 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper84 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper87 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray88 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper77, unicodeEscaper83, unicodeEscaper84, unicodeEscaper87 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator89 = unicodeEscaper72.with(charSequenceTranslatorArray88);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator90 = unicodeEscaper67.with(charSequenceTranslatorArray88);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator91 = charSequenceTranslator64.with(charSequenceTranslatorArray88);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator92 = unicodeEscaper17.with(charSequenceTranslatorArray88);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator93 = unicodeEscaper14.with(charSequenceTranslatorArray88);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator94 = unicodeEscaper12.with(charSequenceTranslatorArray88);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator95 = unicodeEscaper9.with(charSequenceTranslatorArray88);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator96 = unicodeEscaper2.with(charSequenceTranslatorArray88);
java.lang.Class<?> wildcardClass97 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031" + "'", str7, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper9);
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertNotNull(unicodeEscaper14);
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertEquals("'" + str22 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str22, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertEquals("'" + str27 + "' != '" + "hi!" + "'", str27, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertTrue("'" + int34 + "' != '" + 0 + "'", int34 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper36);
org.junit.Assert.assertNotNull(unicodeEscaper40);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray41);
org.junit.Assert.assertNotNull(charSequenceTranslator42);
org.junit.Assert.assertNotNull(charSequenceTranslator43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertNotNull(unicodeEscaper47);
org.junit.Assert.assertEquals("'" + str49 + "' != '" + "hi!" + "'", str49, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper52);
org.junit.Assert.assertTrue("'" + int56 + "' != '" + 0 + "'", int56 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper58);
org.junit.Assert.assertNotNull(unicodeEscaper62);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray63);
org.junit.Assert.assertNotNull(charSequenceTranslator64);
org.junit.Assert.assertNotNull(unicodeEscaper67);
org.junit.Assert.assertEquals("'" + str69 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str69, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper72);
org.junit.Assert.assertEquals("'" + str74 + "' != '" + "hi!" + "'", str74, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper77);
org.junit.Assert.assertTrue("'" + int81 + "' != '" + 0 + "'", int81 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper83);
org.junit.Assert.assertNotNull(unicodeEscaper87);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray88);
org.junit.Assert.assertNotNull(charSequenceTranslator89);
org.junit.Assert.assertNotNull(charSequenceTranslator90);
org.junit.Assert.assertNotNull(charSequenceTranslator91);
org.junit.Assert.assertNotNull(charSequenceTranslator92);
org.junit.Assert.assertNotNull(charSequenceTranslator93);
org.junit.Assert.assertNotNull(charSequenceTranslator94);
org.junit.Assert.assertNotNull(charSequenceTranslator95);
org.junit.Assert.assertNotNull(charSequenceTranslator96);
org.junit.Assert.assertNotNull(wildcardClass97);
}
@Test
public void test2138() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2138");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) 'a', (int) (byte) 1);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (byte) 100, writer4);
java.io.Writer writer7 = null;
boolean boolean8 = unicodeEscaper2.translate(0, writer7);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertTrue("'" + boolean8 + "' != '" + false + "'", boolean8 == false);
}
@Test
public void test2139() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2139");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) -1, 0);
java.lang.Class<?> wildcardClass3 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(wildcardClass3);
}
@Test
public void test2140() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2140");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 100, 1);
java.io.Writer writer4 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean5 = unicodeEscaper2.translate((int) (short) 1, writer4);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2141() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2141");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) '#');
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2142() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2142");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, (int) (short) 100);
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2143() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2143");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(1, (int) (byte) 1);
java.io.Writer writer4 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean5 = unicodeEscaper2.translate((int) (byte) 1, writer4);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2144() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2144");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 10, (int) '4');
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0032\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033", (int) (short) 10, writer5);
java.io.Writer writer9 = null;
int int10 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030", 1, writer9);
java.lang.String str12 = unicodeEscaper2.translate((java.lang.CharSequence) "23");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
org.junit.Assert.assertTrue("'" + int10 + "' != '" + 0 + "'", int10 == 0);
org.junit.Assert.assertEquals("'" + str12 + "' != '" + "\\u0032\\u0033" + "'", str12, "\\u0032\\u0033");
}
@Test
public void test2145() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2145");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\\\u007500750068\\\\\\u007500750069\\\\\\u007500750021");
java.lang.String str6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0032\\u0033");
java.io.Writer writer8 = null;
boolean boolean9 = unicodeEscaper2.translate((int) '#', writer8);
java.io.Writer writer11 = null;
boolean boolean12 = unicodeEscaper2.translate(10, writer11);
java.io.Writer writer14 = null;
boolean boolean15 = unicodeEscaper2.translate((int) (byte) -1, writer14);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\\\\\u007500750068\\\\\\u007500750069\\\\\\u007500750021" + "'", str4, "\\\\\\u007500750068\\\\\\u007500750069\\\\\\u007500750021");
org.junit.Assert.assertEquals("'" + str6 + "' != '" + "\\u0032\\u0033" + "'", str6, "\\u0032\\u0033");
org.junit.Assert.assertTrue("'" + boolean9 + "' != '" + false + "'", boolean9 == false);
org.junit.Assert.assertTrue("'" + boolean12 + "' != '" + false + "'", boolean12 == false);
org.junit.Assert.assertTrue("'" + boolean15 + "' != '" + false + "'", boolean15 == false);
}
@Test
public void test2146() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2146");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, (int) (short) 1);
java.io.Writer writer4 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u00750068\\\\u00750069\\\\u00750021", writer4);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2147() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2147");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 10, (int) ' ');
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750037\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030", (int) (byte) 0, writer5);
java.io.Writer writer8 = null;
boolean boolean9 = unicodeEscaper2.translate(0, writer8);
java.io.Writer writer11 = null;
boolean boolean12 = unicodeEscaper2.translate((int) (short) 100, writer11);
java.io.Writer writer15 = null;
int int16 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0036\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0031", 0, writer15);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 100, (int) (byte) -1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, (int) (short) 10);
java.lang.String str24 = unicodeEscaper22.translate((java.lang.CharSequence) "0");
java.io.Writer writer26 = null;
boolean boolean27 = unicodeEscaper22.translate((int) (short) 0, writer26);
java.io.Writer writer29 = null;
boolean boolean30 = unicodeEscaper22.translate(0, writer29);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper33 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) (short) 1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray34 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper19, unicodeEscaper22, unicodeEscaper33 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator35 = unicodeEscaper2.with(charSequenceTranslatorArray34);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
org.junit.Assert.assertTrue("'" + boolean9 + "' != '" + false + "'", boolean9 == false);
org.junit.Assert.assertTrue("'" + boolean12 + "' != '" + false + "'", boolean12 == false);
org.junit.Assert.assertTrue("'" + int16 + "' != '" + 0 + "'", int16 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper19);
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertEquals("'" + str24 + "' != '" + "\\u0030" + "'", str24, "\\u0030");
org.junit.Assert.assertTrue("'" + boolean27 + "' != '" + false + "'", boolean27 == false);
org.junit.Assert.assertTrue("'" + boolean30 + "' != '" + false + "'", boolean30 == false);
org.junit.Assert.assertNotNull(unicodeEscaper33);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray34);
org.junit.Assert.assertNotNull(charSequenceTranslator35);
}
@Test
public void test2148() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2148");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(0, (int) (byte) 0);
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\u007500\\\\u00750035\\\\u00750043\\\\u0075005C\\u007500\\\\u00750037\\\\u00750035\\\\u0075005C\\u00750030\\\\u0075005C\\u00750030\\\\u0075005C\\u00750033\\\\u0075005C\\u00750033\\\\u0075005C\\u007500\\\\u00750035\\\\u00750043\\\\u0075005C\\u007500\\\\u00750037\\\\u00750035\\\\u0075005C\\u00750030\\\\u0075005C\\u00750030\\\\u0075005C\\u00750033\\\\u0075005C\\u0075003\\\\u00750034", 0, writer5);
java.io.Writer writer8 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "", writer8);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
}
@Test
public void test2149() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2149");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, (int) (byte) 100);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) '4', writer4);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(10, 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str19 = unicodeEscaper17.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer25 = null;
int int26 = unicodeEscaper22.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer25);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper29 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray33 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper22, unicodeEscaper28, unicodeEscaper29, unicodeEscaper32 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator34 = unicodeEscaper17.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator35 = unicodeEscaper14.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator36 = unicodeEscaper11.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator37 = unicodeEscaper8.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator38 = unicodeEscaper2.with(charSequenceTranslatorArray33);
java.io.Writer writer41 = null;
int int42 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0037\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030", (int) (byte) 100, writer41);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertNotNull(unicodeEscaper14);
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertEquals("'" + str19 + "' != '" + "hi!" + "'", str19, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertTrue("'" + int26 + "' != '" + 0 + "'", int26 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(unicodeEscaper32);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray33);
org.junit.Assert.assertNotNull(charSequenceTranslator34);
org.junit.Assert.assertNotNull(charSequenceTranslator35);
org.junit.Assert.assertNotNull(charSequenceTranslator36);
org.junit.Assert.assertNotNull(charSequenceTranslator37);
org.junit.Assert.assertNotNull(charSequenceTranslator38);
org.junit.Assert.assertTrue("'" + int42 + "' != '" + 0 + "'", int42 == 0);
}
@Test
public void test2150() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2150");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, (int) 'a');
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate(0, writer4);
java.io.Writer writer8 = null;
int int9 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0036\\u0034", (int) (byte) 0, writer8);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertTrue("'" + int9 + "' != '" + 0 + "'", int9 == 0);
}
@Test
public void test2151() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2151");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer10 = null;
int int11 = unicodeEscaper7.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray18 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper7, unicodeEscaper13, unicodeEscaper14, unicodeEscaper17 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator19 = unicodeEscaper2.with(charSequenceTranslatorArray18);
java.io.Writer writer21 = null;
boolean boolean22 = unicodeEscaper2.translate(0, writer21);
java.io.Writer writer25 = null;
// The following exception was thrown during execution in test generation
try {
int int26 = unicodeEscaper2.translate((java.lang.CharSequence) "34", (int) '#', writer25);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: 35");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "hi!" + "'", str4, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertTrue("'" + int11 + "' != '" + 0 + "'", int11 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray18);
org.junit.Assert.assertNotNull(charSequenceTranslator19);
org.junit.Assert.assertTrue("'" + boolean22 + "' != '" + false + "'", boolean22 == false);
}
@Test
public void test2152() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2152");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 100, (int) (byte) 0);
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2153() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2153");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, 1);
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "61", (int) (short) 0, writer5);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper9 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str14 = unicodeEscaper12.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str19 = unicodeEscaper17.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer25 = null;
int int26 = unicodeEscaper22.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer25);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper29 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray33 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper22, unicodeEscaper28, unicodeEscaper29, unicodeEscaper32 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator34 = unicodeEscaper17.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator35 = unicodeEscaper12.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator36 = unicodeEscaper9.with(charSequenceTranslatorArray33);
java.lang.String str38 = charSequenceTranslator36.translate((java.lang.CharSequence) "23");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str43 = unicodeEscaper41.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper46 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str48 = unicodeEscaper46.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper51 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer54 = null;
int int55 = unicodeEscaper51.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer54);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper58 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper61 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray62 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper51, unicodeEscaper57, unicodeEscaper58, unicodeEscaper61 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator63 = unicodeEscaper46.with(charSequenceTranslatorArray62);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator64 = unicodeEscaper41.with(charSequenceTranslatorArray62);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper67 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer70 = null;
int int71 = unicodeEscaper67.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer70);
java.io.Writer writer73 = null;
boolean boolean74 = unicodeEscaper67.translate((int) (byte) -1, writer73);
java.lang.String str76 = unicodeEscaper67.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper79 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str81 = unicodeEscaper79.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray82 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper67, unicodeEscaper79 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator83 = unicodeEscaper41.with(charSequenceTranslatorArray82);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator84 = charSequenceTranslator36.with(charSequenceTranslatorArray82);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator85 = unicodeEscaper2.with(charSequenceTranslatorArray82);
java.io.Writer writer87 = null;
boolean boolean88 = unicodeEscaper2.translate((-1), writer87);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper9);
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertEquals("'" + str14 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str14, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertEquals("'" + str19 + "' != '" + "hi!" + "'", str19, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertTrue("'" + int26 + "' != '" + 0 + "'", int26 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(unicodeEscaper32);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray33);
org.junit.Assert.assertNotNull(charSequenceTranslator34);
org.junit.Assert.assertNotNull(charSequenceTranslator35);
org.junit.Assert.assertNotNull(charSequenceTranslator36);
org.junit.Assert.assertEquals("'" + str38 + "' != '" + "\\u0032\\u0033" + "'", str38, "\\u0032\\u0033");
org.junit.Assert.assertNotNull(unicodeEscaper41);
org.junit.Assert.assertEquals("'" + str43 + "' != '" + "hi!" + "'", str43, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper46);
org.junit.Assert.assertEquals("'" + str48 + "' != '" + "hi!" + "'", str48, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper51);
org.junit.Assert.assertTrue("'" + int55 + "' != '" + 0 + "'", int55 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper57);
org.junit.Assert.assertNotNull(unicodeEscaper61);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray62);
org.junit.Assert.assertNotNull(charSequenceTranslator63);
org.junit.Assert.assertNotNull(charSequenceTranslator64);
org.junit.Assert.assertNotNull(unicodeEscaper67);
org.junit.Assert.assertTrue("'" + int71 + "' != '" + 0 + "'", int71 == 0);
org.junit.Assert.assertTrue("'" + boolean74 + "' != '" + false + "'", boolean74 == false);
org.junit.Assert.assertEquals("'" + str76 + "' != '" + "0" + "'", str76, "0");
org.junit.Assert.assertNotNull(unicodeEscaper79);
org.junit.Assert.assertEquals("'" + str81 + "' != '" + "hi!" + "'", str81, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray82);
org.junit.Assert.assertNotNull(charSequenceTranslator83);
org.junit.Assert.assertNotNull(charSequenceTranslator84);
org.junit.Assert.assertNotNull(charSequenceTranslator85);
org.junit.Assert.assertTrue("'" + boolean88 + "' != '" + false + "'", boolean88 == false);
}
@Test
public void test2154() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2154");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) (short) 1);
java.lang.CharSequence charSequence3 = null;
java.io.Writer writer5 = null;
// The following exception was thrown during execution in test generation
try {
int int6 = unicodeEscaper2.translate(charSequence3, 0, writer5);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2155() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2155");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, 1);
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "61", (int) (short) 0, writer5);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper9 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str14 = unicodeEscaper12.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str19 = unicodeEscaper17.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer25 = null;
int int26 = unicodeEscaper22.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer25);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper29 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray33 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper22, unicodeEscaper28, unicodeEscaper29, unicodeEscaper32 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator34 = unicodeEscaper17.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator35 = unicodeEscaper12.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator36 = unicodeEscaper9.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator37 = unicodeEscaper2.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str42 = unicodeEscaper40.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper45 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str47 = unicodeEscaper45.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper50 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer53 = null;
int int54 = unicodeEscaper50.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer53);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper56 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper60 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray61 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper50, unicodeEscaper56, unicodeEscaper57, unicodeEscaper60 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator62 = unicodeEscaper45.with(charSequenceTranslatorArray61);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator63 = unicodeEscaper40.with(charSequenceTranslatorArray61);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper66 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer69 = null;
int int70 = unicodeEscaper66.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer69);
java.io.Writer writer72 = null;
boolean boolean73 = unicodeEscaper66.translate((int) (byte) -1, writer72);
java.lang.String str75 = unicodeEscaper66.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper78 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str80 = unicodeEscaper78.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray81 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper66, unicodeEscaper78 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator82 = unicodeEscaper40.with(charSequenceTranslatorArray81);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator83 = charSequenceTranslator37.with(charSequenceTranslatorArray81);
java.lang.Class<?> wildcardClass84 = charSequenceTranslatorArray81.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper9);
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertEquals("'" + str14 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str14, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertEquals("'" + str19 + "' != '" + "hi!" + "'", str19, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertTrue("'" + int26 + "' != '" + 0 + "'", int26 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(unicodeEscaper32);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray33);
org.junit.Assert.assertNotNull(charSequenceTranslator34);
org.junit.Assert.assertNotNull(charSequenceTranslator35);
org.junit.Assert.assertNotNull(charSequenceTranslator36);
org.junit.Assert.assertNotNull(charSequenceTranslator37);
org.junit.Assert.assertNotNull(unicodeEscaper40);
org.junit.Assert.assertEquals("'" + str42 + "' != '" + "hi!" + "'", str42, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper45);
org.junit.Assert.assertEquals("'" + str47 + "' != '" + "hi!" + "'", str47, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper50);
org.junit.Assert.assertTrue("'" + int54 + "' != '" + 0 + "'", int54 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper56);
org.junit.Assert.assertNotNull(unicodeEscaper60);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray61);
org.junit.Assert.assertNotNull(charSequenceTranslator62);
org.junit.Assert.assertNotNull(charSequenceTranslator63);
org.junit.Assert.assertNotNull(unicodeEscaper66);
org.junit.Assert.assertTrue("'" + int70 + "' != '" + 0 + "'", int70 == 0);
org.junit.Assert.assertTrue("'" + boolean73 + "' != '" + false + "'", boolean73 == false);
org.junit.Assert.assertEquals("'" + str75 + "' != '" + "0" + "'", str75, "0");
org.junit.Assert.assertNotNull(unicodeEscaper78);
org.junit.Assert.assertEquals("'" + str80 + "' != '" + "hi!" + "'", str80, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray81);
org.junit.Assert.assertNotNull(charSequenceTranslator82);
org.junit.Assert.assertNotNull(charSequenceTranslator83);
org.junit.Assert.assertNotNull(wildcardClass84);
}
@Test
public void test2156() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2156");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 1, (int) (byte) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper6 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper9 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 100, (int) (short) 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above(100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str19 = unicodeEscaper17.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str24 = unicodeEscaper22.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer30 = null;
int int31 = unicodeEscaper27.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer30);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper33 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper34 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray38 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper27, unicodeEscaper33, unicodeEscaper34, unicodeEscaper37 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator39 = unicodeEscaper22.with(charSequenceTranslatorArray38);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator40 = unicodeEscaper17.with(charSequenceTranslatorArray38);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator41 = unicodeEscaper14.with(charSequenceTranslatorArray38);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper44 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str46 = unicodeEscaper44.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper49 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer52 = null;
int int53 = unicodeEscaper49.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer52);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper55 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper56 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper59 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray60 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper49, unicodeEscaper55, unicodeEscaper56, unicodeEscaper59 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator61 = unicodeEscaper44.with(charSequenceTranslatorArray60);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper64 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str66 = unicodeEscaper64.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper69 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str71 = unicodeEscaper69.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper74 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer77 = null;
int int78 = unicodeEscaper74.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer77);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper80 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper81 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper84 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray85 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper74, unicodeEscaper80, unicodeEscaper81, unicodeEscaper84 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator86 = unicodeEscaper69.with(charSequenceTranslatorArray85);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator87 = unicodeEscaper64.with(charSequenceTranslatorArray85);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator88 = charSequenceTranslator61.with(charSequenceTranslatorArray85);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator89 = unicodeEscaper14.with(charSequenceTranslatorArray85);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator90 = unicodeEscaper11.with(charSequenceTranslatorArray85);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator91 = unicodeEscaper9.with(charSequenceTranslatorArray85);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator92 = unicodeEscaper6.with(charSequenceTranslatorArray85);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator93 = unicodeEscaper2.with(charSequenceTranslatorArray85);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030" + "'", str4, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
org.junit.Assert.assertNotNull(unicodeEscaper6);
org.junit.Assert.assertNotNull(unicodeEscaper9);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertNotNull(unicodeEscaper14);
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertEquals("'" + str19 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str19, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertEquals("'" + str24 + "' != '" + "hi!" + "'", str24, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertTrue("'" + int31 + "' != '" + 0 + "'", int31 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper33);
org.junit.Assert.assertNotNull(unicodeEscaper37);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray38);
org.junit.Assert.assertNotNull(charSequenceTranslator39);
org.junit.Assert.assertNotNull(charSequenceTranslator40);
org.junit.Assert.assertNotNull(charSequenceTranslator41);
org.junit.Assert.assertNotNull(unicodeEscaper44);
org.junit.Assert.assertEquals("'" + str46 + "' != '" + "hi!" + "'", str46, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper49);
org.junit.Assert.assertTrue("'" + int53 + "' != '" + 0 + "'", int53 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper55);
org.junit.Assert.assertNotNull(unicodeEscaper59);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray60);
org.junit.Assert.assertNotNull(charSequenceTranslator61);
org.junit.Assert.assertNotNull(unicodeEscaper64);
org.junit.Assert.assertEquals("'" + str66 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str66, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper69);
org.junit.Assert.assertEquals("'" + str71 + "' != '" + "hi!" + "'", str71, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper74);
org.junit.Assert.assertTrue("'" + int78 + "' != '" + 0 + "'", int78 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper80);
org.junit.Assert.assertNotNull(unicodeEscaper84);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray85);
org.junit.Assert.assertNotNull(charSequenceTranslator86);
org.junit.Assert.assertNotNull(charSequenceTranslator87);
org.junit.Assert.assertNotNull(charSequenceTranslator88);
org.junit.Assert.assertNotNull(charSequenceTranslator89);
org.junit.Assert.assertNotNull(charSequenceTranslator90);
org.junit.Assert.assertNotNull(charSequenceTranslator91);
org.junit.Assert.assertNotNull(charSequenceTranslator92);
org.junit.Assert.assertNotNull(charSequenceTranslator93);
}
@Test
public void test2157() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2157");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str12 = unicodeEscaper10.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer18 = null;
int int19 = unicodeEscaper15.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer18);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray26 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper15, unicodeEscaper21, unicodeEscaper22, unicodeEscaper25 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator27 = unicodeEscaper10.with(charSequenceTranslatorArray26);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator28 = unicodeEscaper5.with(charSequenceTranslatorArray26);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator29 = unicodeEscaper2.with(charSequenceTranslatorArray26);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str34 = unicodeEscaper32.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer40 = null;
int int41 = unicodeEscaper37.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer40);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper43 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper44 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper47 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray48 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper37, unicodeEscaper43, unicodeEscaper44, unicodeEscaper47 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator49 = unicodeEscaper32.with(charSequenceTranslatorArray48);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper52 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str54 = unicodeEscaper52.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str59 = unicodeEscaper57.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper62 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer65 = null;
int int66 = unicodeEscaper62.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer65);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper68 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper69 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper72 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray73 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper62, unicodeEscaper68, unicodeEscaper69, unicodeEscaper72 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator74 = unicodeEscaper57.with(charSequenceTranslatorArray73);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator75 = unicodeEscaper52.with(charSequenceTranslatorArray73);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator76 = charSequenceTranslator49.with(charSequenceTranslatorArray73);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator77 = unicodeEscaper2.with(charSequenceTranslatorArray73);
java.lang.Class<?> wildcardClass78 = charSequenceTranslatorArray73.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str7, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertEquals("'" + str12 + "' != '" + "hi!" + "'", str12, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertTrue("'" + int19 + "' != '" + 0 + "'", int19 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray26);
org.junit.Assert.assertNotNull(charSequenceTranslator27);
org.junit.Assert.assertNotNull(charSequenceTranslator28);
org.junit.Assert.assertNotNull(charSequenceTranslator29);
org.junit.Assert.assertNotNull(unicodeEscaper32);
org.junit.Assert.assertEquals("'" + str34 + "' != '" + "hi!" + "'", str34, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper37);
org.junit.Assert.assertTrue("'" + int41 + "' != '" + 0 + "'", int41 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper43);
org.junit.Assert.assertNotNull(unicodeEscaper47);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray48);
org.junit.Assert.assertNotNull(charSequenceTranslator49);
org.junit.Assert.assertNotNull(unicodeEscaper52);
org.junit.Assert.assertEquals("'" + str54 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str54, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper57);
org.junit.Assert.assertEquals("'" + str59 + "' != '" + "hi!" + "'", str59, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper62);
org.junit.Assert.assertTrue("'" + int66 + "' != '" + 0 + "'", int66 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper68);
org.junit.Assert.assertNotNull(unicodeEscaper72);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray73);
org.junit.Assert.assertNotNull(charSequenceTranslator74);
org.junit.Assert.assertNotNull(charSequenceTranslator75);
org.junit.Assert.assertNotNull(charSequenceTranslator76);
org.junit.Assert.assertNotNull(charSequenceTranslator77);
org.junit.Assert.assertNotNull(wildcardClass78);
}
@Test
public void test2158() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2158");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, 1);
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "61", (int) (short) 0, writer5);
java.io.Writer writer9 = null;
int int10 = unicodeEscaper2.translate((java.lang.CharSequence) "0", (int) (short) 0, writer9);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer15 = null;
boolean boolean16 = unicodeEscaper13.translate((int) (byte) 100, writer15);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str24 = unicodeEscaper22.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer30 = null;
int int31 = unicodeEscaper27.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer30);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper33 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper34 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray38 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper27, unicodeEscaper33, unicodeEscaper34, unicodeEscaper37 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator39 = unicodeEscaper22.with(charSequenceTranslatorArray38);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator40 = unicodeEscaper19.with(charSequenceTranslatorArray38);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator41 = unicodeEscaper13.with(charSequenceTranslatorArray38);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator42 = unicodeEscaper2.with(charSequenceTranslatorArray38);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper45 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '#', (int) (short) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper48 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(1, (-1));
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper50 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper53 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer55 = null;
boolean boolean56 = unicodeEscaper53.translate((int) (short) 0, writer55);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper59 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray60 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper53, unicodeEscaper57, unicodeEscaper59 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator61 = unicodeEscaper50.with(charSequenceTranslatorArray60);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator62 = unicodeEscaper48.with(charSequenceTranslatorArray60);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator63 = unicodeEscaper45.with(charSequenceTranslatorArray60);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator64 = charSequenceTranslator42.with(charSequenceTranslatorArray60);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
org.junit.Assert.assertTrue("'" + int10 + "' != '" + 0 + "'", int10 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertTrue("'" + boolean16 + "' != '" + false + "'", boolean16 == false);
org.junit.Assert.assertNotNull(unicodeEscaper19);
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertEquals("'" + str24 + "' != '" + "hi!" + "'", str24, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertTrue("'" + int31 + "' != '" + 0 + "'", int31 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper33);
org.junit.Assert.assertNotNull(unicodeEscaper37);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray38);
org.junit.Assert.assertNotNull(charSequenceTranslator39);
org.junit.Assert.assertNotNull(charSequenceTranslator40);
org.junit.Assert.assertNotNull(charSequenceTranslator41);
org.junit.Assert.assertNotNull(charSequenceTranslator42);
org.junit.Assert.assertNotNull(unicodeEscaper45);
org.junit.Assert.assertNotNull(unicodeEscaper48);
org.junit.Assert.assertNotNull(unicodeEscaper50);
org.junit.Assert.assertNotNull(unicodeEscaper53);
org.junit.Assert.assertTrue("'" + boolean56 + "' != '" + false + "'", boolean56 == false);
org.junit.Assert.assertNotNull(unicodeEscaper59);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray60);
org.junit.Assert.assertNotNull(charSequenceTranslator61);
org.junit.Assert.assertNotNull(charSequenceTranslator62);
org.junit.Assert.assertNotNull(charSequenceTranslator63);
org.junit.Assert.assertNotNull(charSequenceTranslator64);
}
@Test
public void test2159() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2159");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) -1, (int) '#');
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) ' ', writer4);
java.io.Writer writer8 = null;
// The following exception was thrown during execution in test generation
try {
int int9 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750031", 1, writer8);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
}
@Test
public void test2160() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2160");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str12 = unicodeEscaper10.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer18 = null;
int int19 = unicodeEscaper15.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer18);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray26 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper15, unicodeEscaper21, unicodeEscaper22, unicodeEscaper25 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator27 = unicodeEscaper10.with(charSequenceTranslatorArray26);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator28 = unicodeEscaper5.with(charSequenceTranslatorArray26);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator29 = unicodeEscaper2.with(charSequenceTranslatorArray26);
java.io.Writer writer32 = null;
int int33 = unicodeEscaper2.translate((java.lang.CharSequence) "A", 0, writer32);
java.io.Writer writer35 = null;
boolean boolean36 = unicodeEscaper2.translate((int) (short) 100, writer35);
java.lang.Class<?> wildcardClass37 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str7, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertEquals("'" + str12 + "' != '" + "hi!" + "'", str12, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertTrue("'" + int19 + "' != '" + 0 + "'", int19 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray26);
org.junit.Assert.assertNotNull(charSequenceTranslator27);
org.junit.Assert.assertNotNull(charSequenceTranslator28);
org.junit.Assert.assertNotNull(charSequenceTranslator29);
org.junit.Assert.assertTrue("'" + int33 + "' != '" + 0 + "'", int33 == 0);
org.junit.Assert.assertTrue("'" + boolean36 + "' != '" + false + "'", boolean36 == false);
org.junit.Assert.assertNotNull(wildcardClass37);
}
@Test
public void test2161() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2161");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(10);
java.lang.String str3 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
java.io.Writer writer5 = null;
boolean boolean6 = unicodeEscaper1.translate((int) (byte) 100, writer5);
java.io.Writer writer8 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper1.translate((java.lang.CharSequence) "\\u005Cu00\\u0035\\u0043\\u005Cu00\\u0037\\u0035\\u005Cu0030\\u005Cu0030\\u005Cu0033\\u005Cu0033\\u005Cu00\\u0035\\u0043\\u005Cu00\\u0037\\u0035\\u005Cu0030\\u005Cu0030\\u005Cu0033\\u005Cu003\\u0034", writer8);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertEquals("'" + str3 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034" + "'", str3, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
org.junit.Assert.assertTrue("'" + boolean6 + "' != '" + false + "'", boolean6 == false);
}
@Test
public void test2162() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2162");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) (short) 100);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate(10, writer4);
java.lang.String str7 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
java.lang.Class<?> wildcardClass8 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "\\u005Cu00\\u0035\\u0043\\u005Cu00\\u0037\\u0035\\u005Cu0030\\u005Cu0030\\u005Cu0033\\u005Cu0033\\u005Cu00\\u0035\\u0043\\u005Cu00\\u0037\\u0035\\u005Cu0030\\u005Cu0030\\u005Cu0033\\u005Cu003\\u0034" + "'", str7, "\\u005Cu00\\u0035\\u0043\\u005Cu00\\u0037\\u0035\\u005Cu0030\\u005Cu0030\\u005Cu0033\\u005Cu0033\\u005Cu00\\u0035\\u0043\\u005Cu00\\u0037\\u0035\\u005Cu0030\\u005Cu0030\\u005Cu0033\\u005Cu003\\u0034");
org.junit.Assert.assertNotNull(wildcardClass8);
}
@Test
public void test2163() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2163");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 100);
java.io.Writer writer3 = null;
boolean boolean4 = unicodeEscaper1.translate((int) (short) 0, writer3);
java.io.Writer writer7 = null;
// The following exception was thrown during execution in test generation
try {
int int8 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0036\\u0038\\u005C\\u0075\\u0030\\u0030\\u0036\\u0039\\u005C\\u0075\\u0030\\u0030\\u0032\\u0031", (int) 'a', writer7);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertTrue("'" + boolean4 + "' != '" + false + "'", boolean4 == false);
}
@Test
public void test2164() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2164");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(100, (int) ' ');
java.io.Writer writer4 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean5 = unicodeEscaper2.translate((int) (short) 0, writer4);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2165() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2165");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(100, 1);
java.io.Writer writer5 = null;
// The following exception was thrown during execution in test generation
try {
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750036\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750031", (int) (byte) 10, writer5);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2166() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2166");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
java.lang.Class<?> wildcardClass2 = unicodeEscaper1.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertNotNull(wildcardClass2);
}
@Test
public void test2167() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2167");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 1, (int) (byte) 0);
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\\\u007500750068\\\\\\u007500750069\\\\\\u007500750021", (int) (byte) 0, writer5);
java.io.Writer writer8 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\u0046\\u0046\\u0046\\u0046\\u0046\\u0046\\u0046\\u0046", writer8);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
}
@Test
public void test2168() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2168");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, 100);
java.io.Writer writer5 = null;
// The following exception was thrown during execution in test generation
try {
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "20", (int) '#', writer5);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: 35");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2169() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2169");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(1, (int) (short) 10);
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030", (int) (byte) 10, writer5);
java.io.Writer writer8 = null;
boolean boolean9 = unicodeEscaper2.translate((int) (short) 100, writer8);
java.io.Writer writer11 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean12 = unicodeEscaper2.translate((int) (byte) 1, writer11);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
org.junit.Assert.assertTrue("'" + boolean9 + "' != '" + false + "'", boolean9 == false);
}
@Test
public void test2170() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2170");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer10 = null;
int int11 = unicodeEscaper7.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray18 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper7, unicodeEscaper13, unicodeEscaper14, unicodeEscaper17 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator19 = unicodeEscaper2.with(charSequenceTranslatorArray18);
java.lang.String str21 = unicodeEscaper2.translate((java.lang.CharSequence) "");
java.io.Writer writer23 = null;
boolean boolean24 = unicodeEscaper2.translate((int) (byte) 0, writer23);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str32 = unicodeEscaper30.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer38 = null;
int int39 = unicodeEscaper35.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer38);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper42 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper45 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray46 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper35, unicodeEscaper41, unicodeEscaper42, unicodeEscaper45 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator47 = unicodeEscaper30.with(charSequenceTranslatorArray46);
java.lang.String str49 = unicodeEscaper30.translate((java.lang.CharSequence) "");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper52 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str54 = unicodeEscaper52.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str59 = unicodeEscaper57.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper62 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer65 = null;
int int66 = unicodeEscaper62.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer65);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper68 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper69 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper72 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray73 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper62, unicodeEscaper68, unicodeEscaper69, unicodeEscaper72 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator74 = unicodeEscaper57.with(charSequenceTranslatorArray73);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator75 = unicodeEscaper52.with(charSequenceTranslatorArray73);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper77 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper80 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer82 = null;
boolean boolean83 = unicodeEscaper80.translate((int) (short) 0, writer82);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper84 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper86 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray87 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper80, unicodeEscaper84, unicodeEscaper86 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator88 = unicodeEscaper77.with(charSequenceTranslatorArray87);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator89 = charSequenceTranslator75.with(charSequenceTranslatorArray87);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator90 = unicodeEscaper30.with(charSequenceTranslatorArray87);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator91 = unicodeEscaper27.with(charSequenceTranslatorArray87);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator92 = unicodeEscaper2.with(charSequenceTranslatorArray87);
java.io.Writer writer94 = null;
boolean boolean95 = unicodeEscaper2.translate((int) ' ', writer94);
java.io.Writer writer97 = null;
boolean boolean98 = unicodeEscaper2.translate((int) (byte) 10, writer97);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "hi!" + "'", str4, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertTrue("'" + int11 + "' != '" + 0 + "'", int11 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray18);
org.junit.Assert.assertNotNull(charSequenceTranslator19);
org.junit.Assert.assertEquals("'" + str21 + "' != '" + "" + "'", str21, "");
org.junit.Assert.assertTrue("'" + boolean24 + "' != '" + false + "'", boolean24 == false);
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertEquals("'" + str32 + "' != '" + "hi!" + "'", str32, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper35);
org.junit.Assert.assertTrue("'" + int39 + "' != '" + 0 + "'", int39 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper41);
org.junit.Assert.assertNotNull(unicodeEscaper45);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray46);
org.junit.Assert.assertNotNull(charSequenceTranslator47);
org.junit.Assert.assertEquals("'" + str49 + "' != '" + "" + "'", str49, "");
org.junit.Assert.assertNotNull(unicodeEscaper52);
org.junit.Assert.assertEquals("'" + str54 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str54, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper57);
org.junit.Assert.assertEquals("'" + str59 + "' != '" + "hi!" + "'", str59, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper62);
org.junit.Assert.assertTrue("'" + int66 + "' != '" + 0 + "'", int66 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper68);
org.junit.Assert.assertNotNull(unicodeEscaper72);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray73);
org.junit.Assert.assertNotNull(charSequenceTranslator74);
org.junit.Assert.assertNotNull(charSequenceTranslator75);
org.junit.Assert.assertNotNull(unicodeEscaper77);
org.junit.Assert.assertNotNull(unicodeEscaper80);
org.junit.Assert.assertTrue("'" + boolean83 + "' != '" + false + "'", boolean83 == false);
org.junit.Assert.assertNotNull(unicodeEscaper86);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray87);
org.junit.Assert.assertNotNull(charSequenceTranslator88);
org.junit.Assert.assertNotNull(charSequenceTranslator89);
org.junit.Assert.assertNotNull(charSequenceTranslator90);
org.junit.Assert.assertNotNull(charSequenceTranslator91);
org.junit.Assert.assertNotNull(charSequenceTranslator92);
org.junit.Assert.assertTrue("'" + boolean95 + "' != '" + false + "'", boolean95 == false);
org.junit.Assert.assertTrue("'" + boolean98 + "' != '" + false + "'", boolean98 == false);
}
@Test
public void test2171() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2171");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 0, (-1));
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, (int) 'a');
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, 1);
java.lang.String str12 = unicodeEscaper10.translate((java.lang.CharSequence) "FFFFFFFF");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str17 = unicodeEscaper15.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str22 = unicodeEscaper20.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer28 = null;
int int29 = unicodeEscaper25.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer28);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray36 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper25, unicodeEscaper31, unicodeEscaper32, unicodeEscaper35 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator37 = unicodeEscaper20.with(charSequenceTranslatorArray36);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator38 = unicodeEscaper15.with(charSequenceTranslatorArray36);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator39 = unicodeEscaper10.with(charSequenceTranslatorArray36);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator40 = unicodeEscaper5.with(charSequenceTranslatorArray36);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator41 = unicodeEscaper2.with(charSequenceTranslatorArray36);
java.lang.Class<?> wildcardClass42 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "0" + "'", str7, "0");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertEquals("'" + str12 + "' != '" + "FFFFFFFF" + "'", str12, "FFFFFFFF");
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertEquals("'" + str17 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str17, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertEquals("'" + str22 + "' != '" + "hi!" + "'", str22, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertTrue("'" + int29 + "' != '" + 0 + "'", int29 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertNotNull(unicodeEscaper35);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray36);
org.junit.Assert.assertNotNull(charSequenceTranslator37);
org.junit.Assert.assertNotNull(charSequenceTranslator38);
org.junit.Assert.assertNotNull(charSequenceTranslator39);
org.junit.Assert.assertNotNull(charSequenceTranslator40);
org.junit.Assert.assertNotNull(charSequenceTranslator41);
org.junit.Assert.assertNotNull(wildcardClass42);
}
@Test
public void test2172() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2172");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(100, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 10, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer12 = null;
boolean boolean13 = unicodeEscaper10.translate((int) (short) 0, writer12);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray17 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper10, unicodeEscaper14, unicodeEscaper16 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator18 = unicodeEscaper7.with(charSequenceTranslatorArray17);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator19 = unicodeEscaper5.with(charSequenceTranslatorArray17);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator20 = unicodeEscaper2.with(charSequenceTranslatorArray17);
java.lang.Class<?> wildcardClass21 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertTrue("'" + boolean13 + "' != '" + false + "'", boolean13 == false);
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray17);
org.junit.Assert.assertNotNull(charSequenceTranslator18);
org.junit.Assert.assertNotNull(charSequenceTranslator19);
org.junit.Assert.assertNotNull(charSequenceTranslator20);
org.junit.Assert.assertNotNull(wildcardClass21);
}
@Test
public void test2173() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2173");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 0, (-1));
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, (int) 'a');
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, 1);
java.lang.String str12 = unicodeEscaper10.translate((java.lang.CharSequence) "FFFFFFFF");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str17 = unicodeEscaper15.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str22 = unicodeEscaper20.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer28 = null;
int int29 = unicodeEscaper25.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer28);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray36 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper25, unicodeEscaper31, unicodeEscaper32, unicodeEscaper35 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator37 = unicodeEscaper20.with(charSequenceTranslatorArray36);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator38 = unicodeEscaper15.with(charSequenceTranslatorArray36);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator39 = unicodeEscaper10.with(charSequenceTranslatorArray36);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator40 = unicodeEscaper5.with(charSequenceTranslatorArray36);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator41 = unicodeEscaper2.with(charSequenceTranslatorArray36);
java.lang.String str43 = charSequenceTranslator41.translate((java.lang.CharSequence) "23");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "0" + "'", str7, "0");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertEquals("'" + str12 + "' != '" + "FFFFFFFF" + "'", str12, "FFFFFFFF");
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertEquals("'" + str17 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str17, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertEquals("'" + str22 + "' != '" + "hi!" + "'", str22, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertTrue("'" + int29 + "' != '" + 0 + "'", int29 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertNotNull(unicodeEscaper35);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray36);
org.junit.Assert.assertNotNull(charSequenceTranslator37);
org.junit.Assert.assertNotNull(charSequenceTranslator38);
org.junit.Assert.assertNotNull(charSequenceTranslator39);
org.junit.Assert.assertNotNull(charSequenceTranslator40);
org.junit.Assert.assertNotNull(charSequenceTranslator41);
org.junit.Assert.assertEquals("'" + str43 + "' != '" + "\\u0032\\u0033" + "'", str43, "\\u0032\\u0033");
}
@Test
public void test2174() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2174");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (-1));
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2175() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2175");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) 'a');
java.io.Writer writer3 = null;
boolean boolean4 = unicodeEscaper1.translate((int) '4', writer3);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper9 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str14 = unicodeEscaper12.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str19 = unicodeEscaper17.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer25 = null;
int int26 = unicodeEscaper22.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer25);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper29 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray33 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper22, unicodeEscaper28, unicodeEscaper29, unicodeEscaper32 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator34 = unicodeEscaper17.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator35 = unicodeEscaper12.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator36 = unicodeEscaper9.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator37 = unicodeEscaper7.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator38 = unicodeEscaper1.with(charSequenceTranslatorArray33);
java.lang.String str40 = charSequenceTranslator38.translate((java.lang.CharSequence) "\\\\\\u007500750068\\\\\\u007500750069\\\\\\u007500750021");
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertTrue("'" + boolean4 + "' != '" + false + "'", boolean4 == false);
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertNotNull(unicodeEscaper9);
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertEquals("'" + str14 + "' != '" + "hi!" + "'", str14, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertEquals("'" + str19 + "' != '" + "hi!" + "'", str19, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertTrue("'" + int26 + "' != '" + 0 + "'", int26 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(unicodeEscaper32);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray33);
org.junit.Assert.assertNotNull(charSequenceTranslator34);
org.junit.Assert.assertNotNull(charSequenceTranslator35);
org.junit.Assert.assertNotNull(charSequenceTranslator36);
org.junit.Assert.assertNotNull(charSequenceTranslator37);
org.junit.Assert.assertNotNull(charSequenceTranslator38);
org.junit.Assert.assertEquals("'" + str40 + "' != '" + "\\u005C\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0038\\u005C\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0039\\u005C\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0032\\u0031" + "'", str40, "\\u005C\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0038\\u005C\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0039\\u005C\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0032\\u0031");
}
@Test
public void test2176() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2176");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 100, (int) (short) 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper4 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above(100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str12 = unicodeEscaper10.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str17 = unicodeEscaper15.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer23 = null;
int int24 = unicodeEscaper20.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer23);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray31 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper20, unicodeEscaper26, unicodeEscaper27, unicodeEscaper30 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator32 = unicodeEscaper15.with(charSequenceTranslatorArray31);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper10.with(charSequenceTranslatorArray31);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator34 = unicodeEscaper7.with(charSequenceTranslatorArray31);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str39 = unicodeEscaper37.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper42 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer45 = null;
int int46 = unicodeEscaper42.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer45);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper48 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper49 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper52 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray53 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper42, unicodeEscaper48, unicodeEscaper49, unicodeEscaper52 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator54 = unicodeEscaper37.with(charSequenceTranslatorArray53);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str59 = unicodeEscaper57.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper62 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str64 = unicodeEscaper62.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper67 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer70 = null;
int int71 = unicodeEscaper67.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer70);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper73 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper74 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper77 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray78 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper67, unicodeEscaper73, unicodeEscaper74, unicodeEscaper77 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator79 = unicodeEscaper62.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator80 = unicodeEscaper57.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator81 = charSequenceTranslator54.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator82 = unicodeEscaper7.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator83 = unicodeEscaper4.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator84 = unicodeEscaper2.with(charSequenceTranslatorArray78);
java.io.Writer writer87 = null;
// The following exception was thrown during execution in test generation
try {
int int88 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750037\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030", 1, writer87);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper4);
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertEquals("'" + str12 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str12, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertEquals("'" + str17 + "' != '" + "hi!" + "'", str17, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertTrue("'" + int24 + "' != '" + 0 + "'", int24 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper26);
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray31);
org.junit.Assert.assertNotNull(charSequenceTranslator32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
org.junit.Assert.assertNotNull(charSequenceTranslator34);
org.junit.Assert.assertNotNull(unicodeEscaper37);
org.junit.Assert.assertEquals("'" + str39 + "' != '" + "hi!" + "'", str39, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper42);
org.junit.Assert.assertTrue("'" + int46 + "' != '" + 0 + "'", int46 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper48);
org.junit.Assert.assertNotNull(unicodeEscaper52);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray53);
org.junit.Assert.assertNotNull(charSequenceTranslator54);
org.junit.Assert.assertNotNull(unicodeEscaper57);
org.junit.Assert.assertEquals("'" + str59 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str59, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper62);
org.junit.Assert.assertEquals("'" + str64 + "' != '" + "hi!" + "'", str64, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper67);
org.junit.Assert.assertTrue("'" + int71 + "' != '" + 0 + "'", int71 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper73);
org.junit.Assert.assertNotNull(unicodeEscaper77);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray78);
org.junit.Assert.assertNotNull(charSequenceTranslator79);
org.junit.Assert.assertNotNull(charSequenceTranslator80);
org.junit.Assert.assertNotNull(charSequenceTranslator81);
org.junit.Assert.assertNotNull(charSequenceTranslator82);
org.junit.Assert.assertNotNull(charSequenceTranslator83);
org.junit.Assert.assertNotNull(charSequenceTranslator84);
}
@Test
public void test2177() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2177");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(10, 100);
java.io.Writer writer4 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "6\\u0031", writer4);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2178() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2178");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(0, (int) 'a');
java.io.Writer writer4 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean5 = unicodeEscaper2.translate((int) (byte) 0, writer4);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2179() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2179");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) -1, (int) '4');
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750032\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033");
java.lang.Class<?> wildcardClass5 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\\\u\\u0030\\u003075\\u0030\\u00305C\\\\u\\u0030\\u003075\\u0030\\u003075\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0030\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0030\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0033\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0032\\\\u\\u0030\\u003075\\u0030\\u00305C\\\\u\\u0030\\u003075\\u0030\\u003075\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0030\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0030\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0033\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0033" + "'", str4, "\\\\u\\u0030\\u003075\\u0030\\u00305C\\\\u\\u0030\\u003075\\u0030\\u003075\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0030\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0030\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0033\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0032\\\\u\\u0030\\u003075\\u0030\\u00305C\\\\u\\u0030\\u003075\\u0030\\u003075\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0030\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0030\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0033\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0033");
org.junit.Assert.assertNotNull(wildcardClass5);
}
@Test
public void test2180() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2180");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) -1);
java.io.Writer writer3 = null;
boolean boolean4 = unicodeEscaper1.translate((int) '#', writer3);
java.io.Writer writer6 = null;
boolean boolean7 = unicodeEscaper1.translate((int) (byte) -1, writer6);
java.lang.String str9 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertTrue("'" + boolean4 + "' != '" + false + "'", boolean4 == false);
org.junit.Assert.assertTrue("'" + boolean7 + "' != '" + false + "'", boolean7 == false);
org.junit.Assert.assertEquals("'" + str9 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030" + "'", str9, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
}
@Test
public void test2181() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2181");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, 0);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (short) 0, writer4);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str15 = unicodeEscaper13.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str20 = unicodeEscaper18.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper23 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer26 = null;
int int27 = unicodeEscaper23.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer26);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper29 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper33 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray34 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper23, unicodeEscaper29, unicodeEscaper30, unicodeEscaper33 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator35 = unicodeEscaper18.with(charSequenceTranslatorArray34);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator36 = unicodeEscaper13.with(charSequenceTranslatorArray34);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator37 = unicodeEscaper10.with(charSequenceTranslatorArray34);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator38 = unicodeEscaper8.with(charSequenceTranslatorArray34);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator39 = unicodeEscaper2.with(charSequenceTranslatorArray34);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray40 = null;
// The following exception was thrown during execution in test generation
try {
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator41 = unicodeEscaper2.with(charSequenceTranslatorArray40);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertEquals("'" + str15 + "' != '" + "hi!" + "'", str15, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertEquals("'" + str20 + "' != '" + "hi!" + "'", str20, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper23);
org.junit.Assert.assertTrue("'" + int27 + "' != '" + 0 + "'", int27 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper29);
org.junit.Assert.assertNotNull(unicodeEscaper33);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray34);
org.junit.Assert.assertNotNull(charSequenceTranslator35);
org.junit.Assert.assertNotNull(charSequenceTranslator36);
org.junit.Assert.assertNotNull(charSequenceTranslator37);
org.junit.Assert.assertNotNull(charSequenceTranslator38);
org.junit.Assert.assertNotNull(charSequenceTranslator39);
}
@Test
public void test2182() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2182");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 100, (int) (byte) -1);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u00750068\\\\u00750069\\\\u00750021");
java.io.Writer writer7 = null;
int int8 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750037\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030", (int) (byte) 0, writer7);
java.io.Writer writer10 = null;
boolean boolean11 = unicodeEscaper2.translate(100, writer10);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\\\u00750068\\\\u00750069\\\\u00750021" + "'", str4, "\\\\u00750068\\\\u00750069\\\\u00750021");
org.junit.Assert.assertTrue("'" + int8 + "' != '" + 0 + "'", int8 == 0);
org.junit.Assert.assertTrue("'" + boolean11 + "' != '" + false + "'", boolean11 == false);
}
@Test
public void test2183() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2183");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str9 = unicodeEscaper7.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer15 = null;
int int16 = unicodeEscaper12.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer15);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray23 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper12, unicodeEscaper18, unicodeEscaper19, unicodeEscaper22 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator24 = unicodeEscaper7.with(charSequenceTranslatorArray23);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator25 = unicodeEscaper2.with(charSequenceTranslatorArray23);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str30 = unicodeEscaper28.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper33 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str35 = unicodeEscaper33.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper38 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer41 = null;
int int42 = unicodeEscaper38.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer41);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper44 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper45 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper48 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray49 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper38, unicodeEscaper44, unicodeEscaper45, unicodeEscaper48 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator50 = unicodeEscaper33.with(charSequenceTranslatorArray49);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator51 = unicodeEscaper28.with(charSequenceTranslatorArray49);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator52 = charSequenceTranslator25.with(charSequenceTranslatorArray49);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper55 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 10, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper60 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer62 = null;
boolean boolean63 = unicodeEscaper60.translate((int) (short) 0, writer62);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper64 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper66 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray67 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper60, unicodeEscaper64, unicodeEscaper66 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator68 = unicodeEscaper57.with(charSequenceTranslatorArray67);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator69 = unicodeEscaper55.with(charSequenceTranslatorArray67);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator70 = charSequenceTranslator25.with(charSequenceTranslatorArray67);
java.lang.String str72 = charSequenceTranslator70.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0034\\u0031");
java.lang.String str74 = charSequenceTranslator70.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033");
java.lang.String str76 = charSequenceTranslator70.translate((java.lang.CharSequence) "34");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "hi!" + "'", str4, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertEquals("'" + str9 + "' != '" + "hi!" + "'", str9, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertTrue("'" + int16 + "' != '" + 0 + "'", int16 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray23);
org.junit.Assert.assertNotNull(charSequenceTranslator24);
org.junit.Assert.assertNotNull(charSequenceTranslator25);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertEquals("'" + str30 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str30, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper33);
org.junit.Assert.assertEquals("'" + str35 + "' != '" + "hi!" + "'", str35, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper38);
org.junit.Assert.assertTrue("'" + int42 + "' != '" + 0 + "'", int42 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper44);
org.junit.Assert.assertNotNull(unicodeEscaper48);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray49);
org.junit.Assert.assertNotNull(charSequenceTranslator50);
org.junit.Assert.assertNotNull(charSequenceTranslator51);
org.junit.Assert.assertNotNull(charSequenceTranslator52);
org.junit.Assert.assertNotNull(unicodeEscaper55);
org.junit.Assert.assertNotNull(unicodeEscaper57);
org.junit.Assert.assertNotNull(unicodeEscaper60);
org.junit.Assert.assertTrue("'" + boolean63 + "' != '" + false + "'", boolean63 == false);
org.junit.Assert.assertNotNull(unicodeEscaper66);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray67);
org.junit.Assert.assertNotNull(charSequenceTranslator68);
org.junit.Assert.assertNotNull(charSequenceTranslator69);
org.junit.Assert.assertNotNull(charSequenceTranslator70);
org.junit.Assert.assertEquals("'" + str72 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031" + "'", str72, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
org.junit.Assert.assertEquals("'" + str74 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033" + "'", str74, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033");
org.junit.Assert.assertEquals("'" + str76 + "' != '" + "\\u0033\\u0034" + "'", str76, "\\u0033\\u0034");
}
@Test
public void test2184() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2184");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((-1), (int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(10, (int) (byte) 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 0, (-1));
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 1, (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str16 = unicodeEscaper14.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str21 = unicodeEscaper19.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer27 = null;
int int28 = unicodeEscaper24.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer27);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper34 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray35 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper24, unicodeEscaper30, unicodeEscaper31, unicodeEscaper34 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator36 = unicodeEscaper19.with(charSequenceTranslatorArray35);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator37 = unicodeEscaper14.with(charSequenceTranslatorArray35);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator38 = unicodeEscaper11.with(charSequenceTranslatorArray35);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator39 = unicodeEscaper8.with(charSequenceTranslatorArray35);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator40 = unicodeEscaper5.with(charSequenceTranslatorArray35);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator41 = unicodeEscaper2.with(charSequenceTranslatorArray35);
java.lang.Class<?> wildcardClass42 = charSequenceTranslatorArray35.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertNotNull(unicodeEscaper14);
org.junit.Assert.assertEquals("'" + str16 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str16, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper19);
org.junit.Assert.assertEquals("'" + str21 + "' != '" + "hi!" + "'", str21, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertTrue("'" + int28 + "' != '" + 0 + "'", int28 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertNotNull(unicodeEscaper34);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray35);
org.junit.Assert.assertNotNull(charSequenceTranslator36);
org.junit.Assert.assertNotNull(charSequenceTranslator37);
org.junit.Assert.assertNotNull(charSequenceTranslator38);
org.junit.Assert.assertNotNull(charSequenceTranslator39);
org.junit.Assert.assertNotNull(charSequenceTranslator40);
org.junit.Assert.assertNotNull(charSequenceTranslator41);
org.junit.Assert.assertNotNull(wildcardClass42);
}
@Test
public void test2185() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2185");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) 10);
java.lang.String str3 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u0068\\u0069\\u0021");
java.io.Writer writer6 = null;
// The following exception was thrown during execution in test generation
try {
int int7 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u0036\\u0034", 1, writer6);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertEquals("'" + str3 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0036\\u0038\\u005C\\u0075\\u0030\\u0030\\u0036\\u0039\\u005C\\u0075\\u0030\\u0030\\u0032\\u0031" + "'", str3, "\\u005C\\u0075\\u0030\\u0030\\u0036\\u0038\\u005C\\u0075\\u0030\\u0030\\u0036\\u0039\\u005C\\u0075\\u0030\\u0030\\u0032\\u0031");
}
@Test
public void test2186() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2186");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (short) -1);
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "64", 1, writer5);
java.lang.String str8 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u00750030");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
org.junit.Assert.assertEquals("'" + str8 + "' != '" + "\\\\u00750030" + "'", str8, "\\\\u00750030");
}
@Test
public void test2187() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2187");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 0, (-1));
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str16 = unicodeEscaper14.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer22 = null;
int int23 = unicodeEscaper19.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer22);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper29 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray30 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper19, unicodeEscaper25, unicodeEscaper26, unicodeEscaper29 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper14.with(charSequenceTranslatorArray30);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator32 = unicodeEscaper11.with(charSequenceTranslatorArray30);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper8.with(charSequenceTranslatorArray30);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator34 = unicodeEscaper5.with(charSequenceTranslatorArray30);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator35 = unicodeEscaper2.with(charSequenceTranslatorArray30);
java.io.Writer writer37 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean38 = unicodeEscaper2.translate((int) 'a', writer37);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertNotNull(unicodeEscaper14);
org.junit.Assert.assertEquals("'" + str16 + "' != '" + "hi!" + "'", str16, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper19);
org.junit.Assert.assertTrue("'" + int23 + "' != '" + 0 + "'", int23 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertNotNull(unicodeEscaper29);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
org.junit.Assert.assertNotNull(charSequenceTranslator32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
org.junit.Assert.assertNotNull(charSequenceTranslator34);
org.junit.Assert.assertNotNull(charSequenceTranslator35);
}
@Test
public void test2188() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2188");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 0, (int) (byte) 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 0, (-1));
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) 'a', (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str13 = unicodeEscaper11.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer19 = null;
int int20 = unicodeEscaper16.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer19);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper23 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray27 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper16, unicodeEscaper22, unicodeEscaper23, unicodeEscaper26 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator28 = unicodeEscaper11.with(charSequenceTranslatorArray27);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator29 = unicodeEscaper8.with(charSequenceTranslatorArray27);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str37 = unicodeEscaper35.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer43 = null;
int int44 = unicodeEscaper40.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer43);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper46 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper47 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper50 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray51 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper40, unicodeEscaper46, unicodeEscaper47, unicodeEscaper50 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator52 = unicodeEscaper35.with(charSequenceTranslatorArray51);
java.lang.String str54 = unicodeEscaper35.translate((java.lang.CharSequence) "");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str59 = unicodeEscaper57.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper62 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str64 = unicodeEscaper62.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper67 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer70 = null;
int int71 = unicodeEscaper67.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer70);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper73 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper74 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper77 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray78 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper67, unicodeEscaper73, unicodeEscaper74, unicodeEscaper77 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator79 = unicodeEscaper62.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator80 = unicodeEscaper57.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper82 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper85 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer87 = null;
boolean boolean88 = unicodeEscaper85.translate((int) (short) 0, writer87);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper89 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper91 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray92 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper85, unicodeEscaper89, unicodeEscaper91 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator93 = unicodeEscaper82.with(charSequenceTranslatorArray92);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator94 = charSequenceTranslator80.with(charSequenceTranslatorArray92);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator95 = unicodeEscaper35.with(charSequenceTranslatorArray92);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator96 = unicodeEscaper32.with(charSequenceTranslatorArray92);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator97 = unicodeEscaper8.with(charSequenceTranslatorArray92);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator98 = unicodeEscaper5.with(charSequenceTranslatorArray92);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator99 = unicodeEscaper2.with(charSequenceTranslatorArray92);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertEquals("'" + str13 + "' != '" + "hi!" + "'", str13, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertTrue("'" + int20 + "' != '" + 0 + "'", int20 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertNotNull(unicodeEscaper26);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray27);
org.junit.Assert.assertNotNull(charSequenceTranslator28);
org.junit.Assert.assertNotNull(charSequenceTranslator29);
org.junit.Assert.assertNotNull(unicodeEscaper32);
org.junit.Assert.assertNotNull(unicodeEscaper35);
org.junit.Assert.assertEquals("'" + str37 + "' != '" + "hi!" + "'", str37, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper40);
org.junit.Assert.assertTrue("'" + int44 + "' != '" + 0 + "'", int44 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper46);
org.junit.Assert.assertNotNull(unicodeEscaper50);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray51);
org.junit.Assert.assertNotNull(charSequenceTranslator52);
org.junit.Assert.assertEquals("'" + str54 + "' != '" + "" + "'", str54, "");
org.junit.Assert.assertNotNull(unicodeEscaper57);
org.junit.Assert.assertEquals("'" + str59 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str59, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper62);
org.junit.Assert.assertEquals("'" + str64 + "' != '" + "hi!" + "'", str64, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper67);
org.junit.Assert.assertTrue("'" + int71 + "' != '" + 0 + "'", int71 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper73);
org.junit.Assert.assertNotNull(unicodeEscaper77);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray78);
org.junit.Assert.assertNotNull(charSequenceTranslator79);
org.junit.Assert.assertNotNull(charSequenceTranslator80);
org.junit.Assert.assertNotNull(unicodeEscaper82);
org.junit.Assert.assertNotNull(unicodeEscaper85);
org.junit.Assert.assertTrue("'" + boolean88 + "' != '" + false + "'", boolean88 == false);
org.junit.Assert.assertNotNull(unicodeEscaper91);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray92);
org.junit.Assert.assertNotNull(charSequenceTranslator93);
org.junit.Assert.assertNotNull(charSequenceTranslator94);
org.junit.Assert.assertNotNull(charSequenceTranslator95);
org.junit.Assert.assertNotNull(charSequenceTranslator96);
org.junit.Assert.assertNotNull(charSequenceTranslator97);
org.junit.Assert.assertNotNull(charSequenceTranslator98);
org.junit.Assert.assertNotNull(charSequenceTranslator99);
}
@Test
public void test2189() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2189");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '#', (int) (short) -1);
java.lang.CharSequence charSequence3 = null;
java.io.Writer writer5 = null;
// The following exception was thrown during execution in test generation
try {
int int6 = unicodeEscaper2.translate(charSequence3, (int) (byte) 0, writer5);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2190() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2190");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\\\u007500750068\\\\\\u007500750069\\\\\\u007500750021");
java.lang.String str6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0032\\u0033");
java.io.Writer writer8 = null;
boolean boolean9 = unicodeEscaper2.translate((int) '#', writer8);
java.io.Writer writer11 = null;
boolean boolean12 = unicodeEscaper2.translate(10, writer11);
java.io.Writer writer14 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\u005Cu\\u0030\\u0030\\u0034\\u0031", writer14);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\\\\\u007500750068\\\\\\u007500750069\\\\\\u007500750021" + "'", str4, "\\\\\\u007500750068\\\\\\u007500750069\\\\\\u007500750021");
org.junit.Assert.assertEquals("'" + str6 + "' != '" + "\\u0032\\u0033" + "'", str6, "\\u0032\\u0033");
org.junit.Assert.assertTrue("'" + boolean9 + "' != '" + false + "'", boolean9 == false);
org.junit.Assert.assertTrue("'" + boolean12 + "' != '" + false + "'", boolean12 == false);
}
@Test
public void test2191() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2191");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) -1, (int) (byte) -1);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0036\\u0034");
java.io.Writer writer6 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\u007500\\\\u00750035\\\\u00750043\\\\u0075005C\\u007500\\\\u00750037\\\\u00750035\\\\u0075005C\\u00750030\\\\u0075005C\\u00750030\\\\u0075005C\\u00750033\\\\u0075005C\\u00750033\\\\u0075005C\\u007500\\\\u00750035\\\\u00750043\\\\u0075005C\\u007500\\\\u00750037\\\\u00750035\\\\u0075005C\\u00750030\\\\u0075005C\\u00750030\\\\u0075005C\\u00750033\\\\u0075005C\\u0075003\\\\u00750034", writer6);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u0036\\u0034" + "'", str4, "\\u0036\\u0034");
}
@Test
public void test2192() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2192");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, 1);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
java.lang.String str6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030");
java.lang.String str8 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750036\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750034");
java.lang.Class<?> wildcardClass9 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034" + "'", str4, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
org.junit.Assert.assertEquals("'" + str6 + "' != '" + "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030" + "'", str6, "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030");
org.junit.Assert.assertEquals("'" + str8 + "' != '" + "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750036\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750034" + "'", str8, "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750036\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750034");
org.junit.Assert.assertNotNull(wildcardClass9);
}
@Test
public void test2193() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2193");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(10);
java.lang.String str3 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
java.io.Writer writer5 = null;
boolean boolean6 = unicodeEscaper1.translate((int) (byte) 100, writer5);
java.io.Writer writer8 = null;
boolean boolean9 = unicodeEscaper1.translate(100, writer8);
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertEquals("'" + str3 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034" + "'", str3, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
org.junit.Assert.assertTrue("'" + boolean6 + "' != '" + false + "'", boolean6 == false);
org.junit.Assert.assertTrue("'" + boolean9 + "' != '" + false + "'", boolean9 == false);
}
@Test
public void test2194() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2194");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) -1, 10);
java.io.Writer writer5 = null;
// The following exception was thrown during execution in test generation
try {
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "A", 1, writer5);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: 1");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2195() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2195");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, (int) (byte) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper4 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 100, (int) 'a');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str12 = unicodeEscaper10.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str17 = unicodeEscaper15.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer23 = null;
int int24 = unicodeEscaper20.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer23);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray31 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper20, unicodeEscaper26, unicodeEscaper27, unicodeEscaper30 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator32 = unicodeEscaper15.with(charSequenceTranslatorArray31);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper10.with(charSequenceTranslatorArray31);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer39 = null;
int int40 = unicodeEscaper36.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer39);
java.io.Writer writer42 = null;
boolean boolean43 = unicodeEscaper36.translate((int) (byte) -1, writer42);
java.lang.String str45 = unicodeEscaper36.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper48 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str50 = unicodeEscaper48.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray51 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper36, unicodeEscaper48 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator52 = unicodeEscaper10.with(charSequenceTranslatorArray51);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator53 = unicodeEscaper7.with(charSequenceTranslatorArray51);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator54 = unicodeEscaper4.with(charSequenceTranslatorArray51);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator55 = unicodeEscaper2.with(charSequenceTranslatorArray51);
java.io.Writer writer57 = null;
boolean boolean58 = unicodeEscaper2.translate((int) (short) 10, writer57);
java.io.Writer writer60 = null;
boolean boolean61 = unicodeEscaper2.translate((int) (short) 0, writer60);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper4);
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertEquals("'" + str12 + "' != '" + "hi!" + "'", str12, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertEquals("'" + str17 + "' != '" + "hi!" + "'", str17, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertTrue("'" + int24 + "' != '" + 0 + "'", int24 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper26);
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray31);
org.junit.Assert.assertNotNull(charSequenceTranslator32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
org.junit.Assert.assertNotNull(unicodeEscaper36);
org.junit.Assert.assertTrue("'" + int40 + "' != '" + 0 + "'", int40 == 0);
org.junit.Assert.assertTrue("'" + boolean43 + "' != '" + false + "'", boolean43 == false);
org.junit.Assert.assertEquals("'" + str45 + "' != '" + "0" + "'", str45, "0");
org.junit.Assert.assertNotNull(unicodeEscaper48);
org.junit.Assert.assertEquals("'" + str50 + "' != '" + "hi!" + "'", str50, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray51);
org.junit.Assert.assertNotNull(charSequenceTranslator52);
org.junit.Assert.assertNotNull(charSequenceTranslator53);
org.junit.Assert.assertNotNull(charSequenceTranslator54);
org.junit.Assert.assertNotNull(charSequenceTranslator55);
org.junit.Assert.assertTrue("'" + boolean58 + "' != '" + false + "'", boolean58 == false);
org.junit.Assert.assertTrue("'" + boolean61 + "' != '" + false + "'", boolean61 == false);
}
@Test
public void test2196() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2196");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, (int) (short) 100);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (short) 10, writer4);
java.lang.String str7 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005Cu00\\u0035\\u0043\\u005Cu00\\u0037\\u0035\\u005Cu0030\\u005Cu0030\\u005Cu0033\\u005Cu0033\\u005Cu00\\u0035\\u0043\\u005Cu00\\u0037\\u0035\\u005Cu0030\\u005Cu0030\\u005Cu0033\\u005Cu003\\u0034");
java.io.Writer writer9 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u00750068\\\\u00750069\\\\u00750021", writer9);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "\\u005Cu00\\u0035\\u0043\\u005Cu00\\u0037\\u0035\\u005Cu0030\\u005Cu0030\\u005Cu0033\\u005Cu0033\\u005Cu00\\u0035\\u0043\\u005Cu00\\u0037\\u0035\\u005Cu0030\\u005Cu0030\\u005Cu0033\\u005Cu003\\u0034" + "'", str7, "\\u005Cu00\\u0035\\u0043\\u005Cu00\\u0037\\u0035\\u005Cu0030\\u005Cu0030\\u005Cu0033\\u005Cu0033\\u005Cu00\\u0035\\u0043\\u005Cu00\\u0037\\u0035\\u005Cu0030\\u005Cu0030\\u005Cu0033\\u005Cu003\\u0034");
}
@Test
public void test2197() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2197");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '#', (int) (byte) 1);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
java.lang.Class<?> wildcardClass5 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034" + "'", str4, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
org.junit.Assert.assertNotNull(wildcardClass5);
}
@Test
public void test2198() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2198");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 1, (int) (short) 100);
java.io.Writer writer4 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "A", writer4);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2199() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2199");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 0, (-1));
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (short) 1, writer4);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
}
@Test
public void test2200() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2200");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) '#', (int) '#');
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030");
java.io.Writer writer6 = null;
boolean boolean7 = unicodeEscaper2.translate((int) '#', writer6);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030" + "'", str4, "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030");
org.junit.Assert.assertTrue("'" + boolean7 + "' != '" + false + "'", boolean7 == false);
}
@Test
public void test2201() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2201");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 100, (int) (byte) -1);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030");
java.io.Writer writer7 = null;
int int8 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750032\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033", (int) (short) 100, writer7);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 1, (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str16 = unicodeEscaper14.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str21 = unicodeEscaper19.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer27 = null;
int int28 = unicodeEscaper24.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer27);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper34 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray35 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper24, unicodeEscaper30, unicodeEscaper31, unicodeEscaper34 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator36 = unicodeEscaper19.with(charSequenceTranslatorArray35);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator37 = unicodeEscaper14.with(charSequenceTranslatorArray35);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator38 = unicodeEscaper11.with(charSequenceTranslatorArray35);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator39 = unicodeEscaper2.with(charSequenceTranslatorArray35);
java.lang.Class<?> wildcardClass40 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030" + "'", str4, "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030");
org.junit.Assert.assertTrue("'" + int8 + "' != '" + 0 + "'", int8 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertNotNull(unicodeEscaper14);
org.junit.Assert.assertEquals("'" + str16 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str16, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper19);
org.junit.Assert.assertEquals("'" + str21 + "' != '" + "hi!" + "'", str21, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertTrue("'" + int28 + "' != '" + 0 + "'", int28 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertNotNull(unicodeEscaper34);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray35);
org.junit.Assert.assertNotNull(charSequenceTranslator36);
org.junit.Assert.assertNotNull(charSequenceTranslator37);
org.junit.Assert.assertNotNull(charSequenceTranslator38);
org.junit.Assert.assertNotNull(charSequenceTranslator39);
org.junit.Assert.assertNotNull(wildcardClass40);
}
@Test
public void test2202() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2202");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) 1);
java.lang.String str3 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u0036\\u0034");
java.lang.Class<?> wildcardClass4 = unicodeEscaper1.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertEquals("'" + str3 + "' != '" + "\\u0036\\u0034" + "'", str3, "\\u0036\\u0034");
org.junit.Assert.assertNotNull(wildcardClass4);
}
@Test
public void test2203() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2203");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 10, 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 1, (int) (byte) 10);
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0036\\u0038\\u005C\\u0075\\u0030\\u0030\\u0036\\u0039\\u005C\\u0075\\u0030\\u0030\\u0032\\u0031");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(0, (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, (int) 'a');
java.lang.String str15 = unicodeEscaper13.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, 1);
java.lang.String str20 = unicodeEscaper18.translate((java.lang.CharSequence) "FFFFFFFF");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper23 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str25 = unicodeEscaper23.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str30 = unicodeEscaper28.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper33 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer36 = null;
int int37 = unicodeEscaper33.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer36);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper39 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper43 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray44 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper33, unicodeEscaper39, unicodeEscaper40, unicodeEscaper43 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator45 = unicodeEscaper28.with(charSequenceTranslatorArray44);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator46 = unicodeEscaper23.with(charSequenceTranslatorArray44);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator47 = unicodeEscaper18.with(charSequenceTranslatorArray44);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator48 = unicodeEscaper13.with(charSequenceTranslatorArray44);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator49 = unicodeEscaper10.with(charSequenceTranslatorArray44);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator50 = unicodeEscaper5.with(charSequenceTranslatorArray44);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator51 = unicodeEscaper2.with(charSequenceTranslatorArray44);
java.lang.Class<?> wildcardClass52 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0038\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0039\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031" + "'", str7, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0038\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0039\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertEquals("'" + str15 + "' != '" + "0" + "'", str15, "0");
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertEquals("'" + str20 + "' != '" + "FFFFFFFF" + "'", str20, "FFFFFFFF");
org.junit.Assert.assertNotNull(unicodeEscaper23);
org.junit.Assert.assertEquals("'" + str25 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str25, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertEquals("'" + str30 + "' != '" + "hi!" + "'", str30, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper33);
org.junit.Assert.assertTrue("'" + int37 + "' != '" + 0 + "'", int37 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper39);
org.junit.Assert.assertNotNull(unicodeEscaper43);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray44);
org.junit.Assert.assertNotNull(charSequenceTranslator45);
org.junit.Assert.assertNotNull(charSequenceTranslator46);
org.junit.Assert.assertNotNull(charSequenceTranslator47);
org.junit.Assert.assertNotNull(charSequenceTranslator48);
org.junit.Assert.assertNotNull(charSequenceTranslator49);
org.junit.Assert.assertNotNull(charSequenceTranslator50);
org.junit.Assert.assertNotNull(charSequenceTranslator51);
org.junit.Assert.assertNotNull(wildcardClass52);
}
@Test
public void test2204() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2204");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper4 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 100, (int) (short) 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper6 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above(100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper9 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str14 = unicodeEscaper12.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str19 = unicodeEscaper17.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer25 = null;
int int26 = unicodeEscaper22.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer25);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper29 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray33 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper22, unicodeEscaper28, unicodeEscaper29, unicodeEscaper32 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator34 = unicodeEscaper17.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator35 = unicodeEscaper12.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator36 = unicodeEscaper9.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper39 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str41 = unicodeEscaper39.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper44 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer47 = null;
int int48 = unicodeEscaper44.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer47);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper50 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper51 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper54 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray55 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper44, unicodeEscaper50, unicodeEscaper51, unicodeEscaper54 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator56 = unicodeEscaper39.with(charSequenceTranslatorArray55);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper59 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str61 = unicodeEscaper59.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper64 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str66 = unicodeEscaper64.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper69 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer72 = null;
int int73 = unicodeEscaper69.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer72);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper75 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper76 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper79 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray80 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper69, unicodeEscaper75, unicodeEscaper76, unicodeEscaper79 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator81 = unicodeEscaper64.with(charSequenceTranslatorArray80);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator82 = unicodeEscaper59.with(charSequenceTranslatorArray80);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator83 = charSequenceTranslator56.with(charSequenceTranslatorArray80);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator84 = unicodeEscaper9.with(charSequenceTranslatorArray80);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator85 = unicodeEscaper6.with(charSequenceTranslatorArray80);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator86 = unicodeEscaper4.with(charSequenceTranslatorArray80);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator87 = unicodeEscaper1.with(charSequenceTranslatorArray80);
java.lang.Class<?> wildcardClass88 = charSequenceTranslatorArray80.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertNotNull(unicodeEscaper4);
org.junit.Assert.assertNotNull(unicodeEscaper6);
org.junit.Assert.assertNotNull(unicodeEscaper9);
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertEquals("'" + str14 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str14, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertEquals("'" + str19 + "' != '" + "hi!" + "'", str19, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertTrue("'" + int26 + "' != '" + 0 + "'", int26 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(unicodeEscaper32);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray33);
org.junit.Assert.assertNotNull(charSequenceTranslator34);
org.junit.Assert.assertNotNull(charSequenceTranslator35);
org.junit.Assert.assertNotNull(charSequenceTranslator36);
org.junit.Assert.assertNotNull(unicodeEscaper39);
org.junit.Assert.assertEquals("'" + str41 + "' != '" + "hi!" + "'", str41, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper44);
org.junit.Assert.assertTrue("'" + int48 + "' != '" + 0 + "'", int48 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper50);
org.junit.Assert.assertNotNull(unicodeEscaper54);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray55);
org.junit.Assert.assertNotNull(charSequenceTranslator56);
org.junit.Assert.assertNotNull(unicodeEscaper59);
org.junit.Assert.assertEquals("'" + str61 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str61, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper64);
org.junit.Assert.assertEquals("'" + str66 + "' != '" + "hi!" + "'", str66, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper69);
org.junit.Assert.assertTrue("'" + int73 + "' != '" + 0 + "'", int73 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper75);
org.junit.Assert.assertNotNull(unicodeEscaper79);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray80);
org.junit.Assert.assertNotNull(charSequenceTranslator81);
org.junit.Assert.assertNotNull(charSequenceTranslator82);
org.junit.Assert.assertNotNull(charSequenceTranslator83);
org.junit.Assert.assertNotNull(charSequenceTranslator84);
org.junit.Assert.assertNotNull(charSequenceTranslator85);
org.junit.Assert.assertNotNull(charSequenceTranslator86);
org.junit.Assert.assertNotNull(charSequenceTranslator87);
org.junit.Assert.assertNotNull(wildcardClass88);
}
@Test
public void test2205() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2205");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) -1, (int) ' ');
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2206() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2206");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 1, (int) '4');
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "1");
java.io.Writer writer7 = null;
int int8 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031", 0, writer7);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u0031" + "'", str4, "\\u0031");
org.junit.Assert.assertTrue("'" + int8 + "' != '" + 0 + "'", int8 == 0);
}
@Test
public void test2207() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2207");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str9 = unicodeEscaper7.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer15 = null;
int int16 = unicodeEscaper12.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer15);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray23 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper12, unicodeEscaper18, unicodeEscaper19, unicodeEscaper22 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator24 = unicodeEscaper7.with(charSequenceTranslatorArray23);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator25 = unicodeEscaper2.with(charSequenceTranslatorArray23);
java.lang.String str27 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
java.io.Writer writer30 = null;
// The following exception was thrown during execution in test generation
try {
int int31 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\\\u00750075005C\\\\\\u007500750075\\\\\\u007500750030\\\\\\u007500750030\\\\\\u007500750033\\\\\\u007500750031", 1, writer30);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str4, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertEquals("'" + str9 + "' != '" + "hi!" + "'", str9, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertTrue("'" + int16 + "' != '" + 0 + "'", int16 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray23);
org.junit.Assert.assertNotNull(charSequenceTranslator24);
org.junit.Assert.assertNotNull(charSequenceTranslator25);
org.junit.Assert.assertEquals("'" + str27 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034" + "'", str27, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
}
@Test
public void test2208() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2208");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) -1, (int) (byte) -1);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) 'a', writer4);
java.lang.CharSequence charSequence6 = null;
java.lang.String str7 = unicodeEscaper2.translate(charSequence6);
java.io.Writer writer9 = null;
boolean boolean10 = unicodeEscaper2.translate(100, writer9);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertNull(str7);
org.junit.Assert.assertTrue("'" + boolean10 + "' != '" + false + "'", boolean10 == false);
}
@Test
public void test2209() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2209");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, (int) (byte) 100);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) '4', writer4);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(10, 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str19 = unicodeEscaper17.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer25 = null;
int int26 = unicodeEscaper22.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer25);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper29 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray33 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper22, unicodeEscaper28, unicodeEscaper29, unicodeEscaper32 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator34 = unicodeEscaper17.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator35 = unicodeEscaper14.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator36 = unicodeEscaper11.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator37 = unicodeEscaper8.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator38 = unicodeEscaper2.with(charSequenceTranslatorArray33);
java.lang.String str40 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0032\\u0033");
java.lang.String str42 = unicodeEscaper2.translate((java.lang.CharSequence) "23");
java.io.Writer writer44 = null;
boolean boolean45 = unicodeEscaper2.translate(10, writer44);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertNotNull(unicodeEscaper14);
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertEquals("'" + str19 + "' != '" + "hi!" + "'", str19, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertTrue("'" + int26 + "' != '" + 0 + "'", int26 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(unicodeEscaper32);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray33);
org.junit.Assert.assertNotNull(charSequenceTranslator34);
org.junit.Assert.assertNotNull(charSequenceTranslator35);
org.junit.Assert.assertNotNull(charSequenceTranslator36);
org.junit.Assert.assertNotNull(charSequenceTranslator37);
org.junit.Assert.assertNotNull(charSequenceTranslator38);
org.junit.Assert.assertEquals("'" + str40 + "' != '" + "\\\\u00750032\\\\u00750033" + "'", str40, "\\\\u00750032\\\\u00750033");
org.junit.Assert.assertEquals("'" + str42 + "' != '" + "23" + "'", str42, "23");
org.junit.Assert.assertTrue("'" + boolean45 + "' != '" + false + "'", boolean45 == false);
}
@Test
public void test2210() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2210");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (byte) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str10 = unicodeEscaper8.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str15 = unicodeEscaper13.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer21 = null;
int int22 = unicodeEscaper18.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer21);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray29 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper18, unicodeEscaper24, unicodeEscaper25, unicodeEscaper28 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator30 = unicodeEscaper13.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper8.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator32 = unicodeEscaper5.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str37 = unicodeEscaper35.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer43 = null;
int int44 = unicodeEscaper40.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer43);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper46 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper47 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper50 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray51 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper40, unicodeEscaper46, unicodeEscaper47, unicodeEscaper50 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator52 = unicodeEscaper35.with(charSequenceTranslatorArray51);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper55 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str57 = unicodeEscaper55.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper60 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str62 = unicodeEscaper60.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper65 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer68 = null;
int int69 = unicodeEscaper65.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer68);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper71 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper72 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper75 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray76 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper65, unicodeEscaper71, unicodeEscaper72, unicodeEscaper75 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator77 = unicodeEscaper60.with(charSequenceTranslatorArray76);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator78 = unicodeEscaper55.with(charSequenceTranslatorArray76);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator79 = charSequenceTranslator52.with(charSequenceTranslatorArray76);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator80 = unicodeEscaper5.with(charSequenceTranslatorArray76);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator81 = unicodeEscaper2.with(charSequenceTranslatorArray76);
java.io.Writer writer83 = null;
// The following exception was thrown during execution in test generation
try {
charSequenceTranslator81.translate((java.lang.CharSequence) "6\\u0031", writer83);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertEquals("'" + str10 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str10, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertEquals("'" + str15 + "' != '" + "hi!" + "'", str15, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertTrue("'" + int22 + "' != '" + 0 + "'", int22 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray29);
org.junit.Assert.assertNotNull(charSequenceTranslator30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
org.junit.Assert.assertNotNull(charSequenceTranslator32);
org.junit.Assert.assertNotNull(unicodeEscaper35);
org.junit.Assert.assertEquals("'" + str37 + "' != '" + "hi!" + "'", str37, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper40);
org.junit.Assert.assertTrue("'" + int44 + "' != '" + 0 + "'", int44 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper46);
org.junit.Assert.assertNotNull(unicodeEscaper50);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray51);
org.junit.Assert.assertNotNull(charSequenceTranslator52);
org.junit.Assert.assertNotNull(unicodeEscaper55);
org.junit.Assert.assertEquals("'" + str57 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str57, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper60);
org.junit.Assert.assertEquals("'" + str62 + "' != '" + "hi!" + "'", str62, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper65);
org.junit.Assert.assertTrue("'" + int69 + "' != '" + 0 + "'", int69 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper71);
org.junit.Assert.assertNotNull(unicodeEscaper75);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray76);
org.junit.Assert.assertNotNull(charSequenceTranslator77);
org.junit.Assert.assertNotNull(charSequenceTranslator78);
org.junit.Assert.assertNotNull(charSequenceTranslator79);
org.junit.Assert.assertNotNull(charSequenceTranslator80);
org.junit.Assert.assertNotNull(charSequenceTranslator81);
}
@Test
public void test2211() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2211");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) ' ');
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u00750030");
java.io.Writer writer6 = null;
boolean boolean7 = unicodeEscaper2.translate((int) (short) 1, writer6);
java.io.Writer writer10 = null;
int int11 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030", 100, writer10);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\\\u00750030" + "'", str4, "\\\\u00750030");
org.junit.Assert.assertTrue("'" + boolean7 + "' != '" + false + "'", boolean7 == false);
org.junit.Assert.assertTrue("'" + int11 + "' != '" + 0 + "'", int11 == 0);
}
@Test
public void test2212() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2212");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 0, (-1));
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "6\\u0031", 0, writer5);
java.io.Writer writer9 = null;
int int10 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030", 100, writer9);
java.lang.String str12 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str17 = unicodeEscaper15.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str22 = unicodeEscaper20.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer28 = null;
int int29 = unicodeEscaper25.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer28);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray36 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper25, unicodeEscaper31, unicodeEscaper32, unicodeEscaper35 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator37 = unicodeEscaper20.with(charSequenceTranslatorArray36);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator38 = unicodeEscaper15.with(charSequenceTranslatorArray36);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) 10);
java.io.Writer writer42 = null;
boolean boolean43 = unicodeEscaper40.translate((int) (byte) 100, writer42);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper45 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper48 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 1, (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper51 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer53 = null;
boolean boolean54 = unicodeEscaper51.translate((int) (short) 0, writer53);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str59 = unicodeEscaper57.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper62 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str64 = unicodeEscaper62.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper67 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer70 = null;
int int71 = unicodeEscaper67.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer70);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper73 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper74 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper77 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray78 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper67, unicodeEscaper73, unicodeEscaper74, unicodeEscaper77 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator79 = unicodeEscaper62.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator80 = unicodeEscaper57.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator81 = unicodeEscaper51.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper84 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) -1, (int) (byte) 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper87 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 100, (int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper89 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) ' ');
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray90 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper45, unicodeEscaper48, charSequenceTranslator81, unicodeEscaper84, unicodeEscaper87, unicodeEscaper89 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator91 = unicodeEscaper40.with(charSequenceTranslatorArray90);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator92 = charSequenceTranslator38.with(charSequenceTranslatorArray90);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator93 = unicodeEscaper2.with(charSequenceTranslatorArray90);
java.io.Writer writer95 = null;
boolean boolean96 = unicodeEscaper2.translate((int) (short) 1, writer95);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
org.junit.Assert.assertTrue("'" + int10 + "' != '" + 0 + "'", int10 == 0);
org.junit.Assert.assertEquals("'" + str12 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031" + "'", str12, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertEquals("'" + str17 + "' != '" + "hi!" + "'", str17, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertEquals("'" + str22 + "' != '" + "hi!" + "'", str22, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertTrue("'" + int29 + "' != '" + 0 + "'", int29 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertNotNull(unicodeEscaper35);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray36);
org.junit.Assert.assertNotNull(charSequenceTranslator37);
org.junit.Assert.assertNotNull(charSequenceTranslator38);
org.junit.Assert.assertNotNull(unicodeEscaper40);
org.junit.Assert.assertTrue("'" + boolean43 + "' != '" + false + "'", boolean43 == false);
org.junit.Assert.assertNotNull(unicodeEscaper45);
org.junit.Assert.assertNotNull(unicodeEscaper48);
org.junit.Assert.assertNotNull(unicodeEscaper51);
org.junit.Assert.assertTrue("'" + boolean54 + "' != '" + false + "'", boolean54 == false);
org.junit.Assert.assertNotNull(unicodeEscaper57);
org.junit.Assert.assertEquals("'" + str59 + "' != '" + "hi!" + "'", str59, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper62);
org.junit.Assert.assertEquals("'" + str64 + "' != '" + "hi!" + "'", str64, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper67);
org.junit.Assert.assertTrue("'" + int71 + "' != '" + 0 + "'", int71 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper73);
org.junit.Assert.assertNotNull(unicodeEscaper77);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray78);
org.junit.Assert.assertNotNull(charSequenceTranslator79);
org.junit.Assert.assertNotNull(charSequenceTranslator80);
org.junit.Assert.assertNotNull(charSequenceTranslator81);
org.junit.Assert.assertNotNull(unicodeEscaper84);
org.junit.Assert.assertNotNull(unicodeEscaper87);
org.junit.Assert.assertNotNull(unicodeEscaper89);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray90);
org.junit.Assert.assertNotNull(charSequenceTranslator91);
org.junit.Assert.assertNotNull(charSequenceTranslator92);
org.junit.Assert.assertNotNull(charSequenceTranslator93);
org.junit.Assert.assertTrue("'" + boolean96 + "' != '" + false + "'", boolean96 == false);
}
@Test
public void test2213() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2213");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 0, 10);
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2214() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2214");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (short) -1);
java.lang.String str3 = unicodeEscaper1.translate((java.lang.CharSequence) "");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str10 = unicodeEscaper8.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str15 = unicodeEscaper13.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer21 = null;
int int22 = unicodeEscaper18.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer21);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray29 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper18, unicodeEscaper24, unicodeEscaper25, unicodeEscaper28 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator30 = unicodeEscaper13.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper8.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator32 = unicodeEscaper5.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer37 = null;
boolean boolean38 = unicodeEscaper35.translate((int) (byte) 100, writer37);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper44 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str46 = unicodeEscaper44.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper49 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer52 = null;
int int53 = unicodeEscaper49.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer52);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper55 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper56 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper59 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray60 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper49, unicodeEscaper55, unicodeEscaper56, unicodeEscaper59 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator61 = unicodeEscaper44.with(charSequenceTranslatorArray60);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator62 = unicodeEscaper41.with(charSequenceTranslatorArray60);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator63 = unicodeEscaper35.with(charSequenceTranslatorArray60);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator64 = charSequenceTranslator32.with(charSequenceTranslatorArray60);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator65 = unicodeEscaper1.with(charSequenceTranslatorArray60);
java.lang.String str67 = unicodeEscaper1.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750031");
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertEquals("'" + str3 + "' != '" + "" + "'", str3, "");
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertEquals("'" + str10 + "' != '" + "hi!" + "'", str10, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertEquals("'" + str15 + "' != '" + "hi!" + "'", str15, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertTrue("'" + int22 + "' != '" + 0 + "'", int22 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray29);
org.junit.Assert.assertNotNull(charSequenceTranslator30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
org.junit.Assert.assertNotNull(charSequenceTranslator32);
org.junit.Assert.assertNotNull(unicodeEscaper35);
org.junit.Assert.assertTrue("'" + boolean38 + "' != '" + false + "'", boolean38 == false);
org.junit.Assert.assertNotNull(unicodeEscaper41);
org.junit.Assert.assertNotNull(unicodeEscaper44);
org.junit.Assert.assertEquals("'" + str46 + "' != '" + "hi!" + "'", str46, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper49);
org.junit.Assert.assertTrue("'" + int53 + "' != '" + 0 + "'", int53 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper55);
org.junit.Assert.assertNotNull(unicodeEscaper59);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray60);
org.junit.Assert.assertNotNull(charSequenceTranslator61);
org.junit.Assert.assertNotNull(charSequenceTranslator62);
org.junit.Assert.assertNotNull(charSequenceTranslator63);
org.junit.Assert.assertNotNull(charSequenceTranslator64);
org.junit.Assert.assertNotNull(charSequenceTranslator65);
org.junit.Assert.assertEquals("'" + str67 + "' != '" + "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750031" + "'", str67, "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750031");
}
@Test
public void test2215() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2215");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) -1, 0);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (byte) 0, writer4);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(100, (int) (short) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 1, 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str16 = unicodeEscaper14.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str21 = unicodeEscaper19.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer27 = null;
int int28 = unicodeEscaper24.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer27);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper34 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray35 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper24, unicodeEscaper30, unicodeEscaper31, unicodeEscaper34 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator36 = unicodeEscaper19.with(charSequenceTranslatorArray35);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator37 = unicodeEscaper14.with(charSequenceTranslatorArray35);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator38 = unicodeEscaper11.with(charSequenceTranslatorArray35);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator39 = unicodeEscaper8.with(charSequenceTranslatorArray35);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator40 = unicodeEscaper2.with(charSequenceTranslatorArray35);
java.lang.Class<?> wildcardClass41 = charSequenceTranslator40.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertNotNull(unicodeEscaper14);
org.junit.Assert.assertEquals("'" + str16 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str16, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper19);
org.junit.Assert.assertEquals("'" + str21 + "' != '" + "hi!" + "'", str21, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertTrue("'" + int28 + "' != '" + 0 + "'", int28 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertNotNull(unicodeEscaper34);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray35);
org.junit.Assert.assertNotNull(charSequenceTranslator36);
org.junit.Assert.assertNotNull(charSequenceTranslator37);
org.junit.Assert.assertNotNull(charSequenceTranslator38);
org.junit.Assert.assertNotNull(charSequenceTranslator39);
org.junit.Assert.assertNotNull(charSequenceTranslator40);
org.junit.Assert.assertNotNull(wildcardClass41);
}
@Test
public void test2216() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2216");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '#', (int) (short) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(1, (-1));
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer12 = null;
boolean boolean13 = unicodeEscaper10.translate((int) (short) 0, writer12);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray17 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper10, unicodeEscaper14, unicodeEscaper16 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator18 = unicodeEscaper7.with(charSequenceTranslatorArray17);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator19 = unicodeEscaper5.with(charSequenceTranslatorArray17);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator20 = unicodeEscaper2.with(charSequenceTranslatorArray17);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (short) -1);
java.lang.CharSequence charSequence23 = null;
java.lang.String str24 = unicodeEscaper22.translate(charSequence23);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str32 = unicodeEscaper30.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer38 = null;
int int39 = unicodeEscaper35.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer38);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper42 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper45 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray46 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper35, unicodeEscaper41, unicodeEscaper42, unicodeEscaper45 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator47 = unicodeEscaper30.with(charSequenceTranslatorArray46);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator48 = unicodeEscaper27.with(charSequenceTranslatorArray46);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator49 = unicodeEscaper22.with(charSequenceTranslatorArray46);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator50 = charSequenceTranslator20.with(charSequenceTranslatorArray46);
java.lang.Class<?> wildcardClass51 = charSequenceTranslatorArray46.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertTrue("'" + boolean13 + "' != '" + false + "'", boolean13 == false);
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray17);
org.junit.Assert.assertNotNull(charSequenceTranslator18);
org.junit.Assert.assertNotNull(charSequenceTranslator19);
org.junit.Assert.assertNotNull(charSequenceTranslator20);
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertNull(str24);
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertEquals("'" + str32 + "' != '" + "hi!" + "'", str32, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper35);
org.junit.Assert.assertTrue("'" + int39 + "' != '" + 0 + "'", int39 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper41);
org.junit.Assert.assertNotNull(unicodeEscaper45);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray46);
org.junit.Assert.assertNotNull(charSequenceTranslator47);
org.junit.Assert.assertNotNull(charSequenceTranslator48);
org.junit.Assert.assertNotNull(charSequenceTranslator49);
org.junit.Assert.assertNotNull(charSequenceTranslator50);
org.junit.Assert.assertNotNull(wildcardClass51);
}
@Test
public void test2217() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2217");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, 0);
java.io.Writer writer7 = null;
boolean boolean8 = unicodeEscaper5.translate((int) (short) 0, writer7);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str18 = unicodeEscaper16.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str23 = unicodeEscaper21.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer29 = null;
int int30 = unicodeEscaper26.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer29);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper33 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray37 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper26, unicodeEscaper32, unicodeEscaper33, unicodeEscaper36 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator38 = unicodeEscaper21.with(charSequenceTranslatorArray37);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator39 = unicodeEscaper16.with(charSequenceTranslatorArray37);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator40 = unicodeEscaper13.with(charSequenceTranslatorArray37);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator41 = unicodeEscaper11.with(charSequenceTranslatorArray37);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator42 = unicodeEscaper5.with(charSequenceTranslatorArray37);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator43 = unicodeEscaper2.with(charSequenceTranslatorArray37);
java.io.Writer writer45 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "23", writer45);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertTrue("'" + boolean8 + "' != '" + false + "'", boolean8 == false);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertEquals("'" + str18 + "' != '" + "hi!" + "'", str18, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertEquals("'" + str23 + "' != '" + "hi!" + "'", str23, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper26);
org.junit.Assert.assertTrue("'" + int30 + "' != '" + 0 + "'", int30 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper32);
org.junit.Assert.assertNotNull(unicodeEscaper36);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray37);
org.junit.Assert.assertNotNull(charSequenceTranslator38);
org.junit.Assert.assertNotNull(charSequenceTranslator39);
org.junit.Assert.assertNotNull(charSequenceTranslator40);
org.junit.Assert.assertNotNull(charSequenceTranslator41);
org.junit.Assert.assertNotNull(charSequenceTranslator42);
org.junit.Assert.assertNotNull(charSequenceTranslator43);
}
@Test
public void test2218() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2218");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) -1, (int) (short) 1);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "A");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u0041" + "'", str4, "\\u0041");
}
@Test
public void test2219() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2219");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 100, 10);
java.lang.Class<?> wildcardClass3 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(wildcardClass3);
}
@Test
public void test2220() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2220");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 100, 1);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate(0, writer4);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
}
@Test
public void test2221() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2221");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 10, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper4 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer9 = null;
boolean boolean10 = unicodeEscaper7.translate((int) (short) 0, writer9);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray14 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper7, unicodeEscaper11, unicodeEscaper13 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator15 = unicodeEscaper4.with(charSequenceTranslatorArray14);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator16 = unicodeEscaper2.with(charSequenceTranslatorArray14);
java.io.Writer writer19 = null;
int int20 = unicodeEscaper2.translate((java.lang.CharSequence) "FFFFFFFF", (int) (short) 1, writer19);
java.io.Writer writer23 = null;
// The following exception was thrown during execution in test generation
try {
int int24 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0038\\u005C\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0039\\u005C\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0032\\u0031", (int) (byte) -1, writer23);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: -1");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper4);
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertTrue("'" + boolean10 + "' != '" + false + "'", boolean10 == false);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray14);
org.junit.Assert.assertNotNull(charSequenceTranslator15);
org.junit.Assert.assertNotNull(charSequenceTranslator16);
org.junit.Assert.assertTrue("'" + int20 + "' != '" + 0 + "'", int20 == 0);
}
@Test
public void test2222() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2222");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) -1);
java.io.Writer writer3 = null;
boolean boolean4 = unicodeEscaper1.translate((int) '#', writer3);
java.io.Writer writer6 = null;
boolean boolean7 = unicodeEscaper1.translate((-1), writer6);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str17 = unicodeEscaper15.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str22 = unicodeEscaper20.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer28 = null;
int int29 = unicodeEscaper25.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer28);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray36 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper25, unicodeEscaper31, unicodeEscaper32, unicodeEscaper35 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator37 = unicodeEscaper20.with(charSequenceTranslatorArray36);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator38 = unicodeEscaper15.with(charSequenceTranslatorArray36);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator39 = unicodeEscaper12.with(charSequenceTranslatorArray36);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator40 = unicodeEscaper10.with(charSequenceTranslatorArray36);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator41 = unicodeEscaper1.with(charSequenceTranslatorArray36);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper44 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(0, (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper47 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, (int) 'a');
java.lang.String str49 = unicodeEscaper47.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper52 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, 1);
java.lang.String str54 = unicodeEscaper52.translate((java.lang.CharSequence) "FFFFFFFF");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str59 = unicodeEscaper57.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper62 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str64 = unicodeEscaper62.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper67 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer70 = null;
int int71 = unicodeEscaper67.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer70);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper73 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper74 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper77 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray78 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper67, unicodeEscaper73, unicodeEscaper74, unicodeEscaper77 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator79 = unicodeEscaper62.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator80 = unicodeEscaper57.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator81 = unicodeEscaper52.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator82 = unicodeEscaper47.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator83 = unicodeEscaper44.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator84 = unicodeEscaper1.with(charSequenceTranslatorArray78);
java.io.Writer writer86 = null;
// The following exception was thrown during execution in test generation
try {
charSequenceTranslator84.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030", writer86);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertTrue("'" + boolean4 + "' != '" + false + "'", boolean4 == false);
org.junit.Assert.assertTrue("'" + boolean7 + "' != '" + false + "'", boolean7 == false);
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertEquals("'" + str17 + "' != '" + "hi!" + "'", str17, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertEquals("'" + str22 + "' != '" + "hi!" + "'", str22, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertTrue("'" + int29 + "' != '" + 0 + "'", int29 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertNotNull(unicodeEscaper35);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray36);
org.junit.Assert.assertNotNull(charSequenceTranslator37);
org.junit.Assert.assertNotNull(charSequenceTranslator38);
org.junit.Assert.assertNotNull(charSequenceTranslator39);
org.junit.Assert.assertNotNull(charSequenceTranslator40);
org.junit.Assert.assertNotNull(charSequenceTranslator41);
org.junit.Assert.assertNotNull(unicodeEscaper44);
org.junit.Assert.assertNotNull(unicodeEscaper47);
org.junit.Assert.assertEquals("'" + str49 + "' != '" + "0" + "'", str49, "0");
org.junit.Assert.assertNotNull(unicodeEscaper52);
org.junit.Assert.assertEquals("'" + str54 + "' != '" + "FFFFFFFF" + "'", str54, "FFFFFFFF");
org.junit.Assert.assertNotNull(unicodeEscaper57);
org.junit.Assert.assertEquals("'" + str59 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str59, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper62);
org.junit.Assert.assertEquals("'" + str64 + "' != '" + "hi!" + "'", str64, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper67);
org.junit.Assert.assertTrue("'" + int71 + "' != '" + 0 + "'", int71 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper73);
org.junit.Assert.assertNotNull(unicodeEscaper77);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray78);
org.junit.Assert.assertNotNull(charSequenceTranslator79);
org.junit.Assert.assertNotNull(charSequenceTranslator80);
org.junit.Assert.assertNotNull(charSequenceTranslator81);
org.junit.Assert.assertNotNull(charSequenceTranslator82);
org.junit.Assert.assertNotNull(charSequenceTranslator83);
org.junit.Assert.assertNotNull(charSequenceTranslator84);
}
@Test
public void test2223() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2223");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer13 = null;
int int14 = unicodeEscaper10.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer13);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray21 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper10, unicodeEscaper16, unicodeEscaper17, unicodeEscaper20 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator22 = unicodeEscaper5.with(charSequenceTranslatorArray21);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator23 = unicodeEscaper2.with(charSequenceTranslatorArray21);
java.lang.String str25 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0031");
java.io.Writer writer27 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\\\\\u007500750068\\\\\\u007500750069\\\\\\u007500750021", writer27);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "hi!" + "'", str7, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertTrue("'" + int14 + "' != '" + 0 + "'", int14 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray21);
org.junit.Assert.assertNotNull(charSequenceTranslator22);
org.junit.Assert.assertNotNull(charSequenceTranslator23);
org.junit.Assert.assertEquals("'" + str25 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031" + "'", str25, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
}
@Test
public void test2224() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2224");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(10, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper4 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 100, (int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper9 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str14 = unicodeEscaper12.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str19 = unicodeEscaper17.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer25 = null;
int int26 = unicodeEscaper22.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer25);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper29 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray33 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper22, unicodeEscaper28, unicodeEscaper29, unicodeEscaper32 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator34 = unicodeEscaper17.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator35 = unicodeEscaper12.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator36 = unicodeEscaper9.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper39 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(10, 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper42 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper44 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray45 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper9, unicodeEscaper39, unicodeEscaper42, unicodeEscaper44 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator46 = unicodeEscaper7.with(charSequenceTranslatorArray45);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator47 = unicodeEscaper4.with(charSequenceTranslatorArray45);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator48 = unicodeEscaper2.with(charSequenceTranslatorArray45);
java.io.Writer writer50 = null;
// The following exception was thrown during execution in test generation
try {
charSequenceTranslator48.translate((java.lang.CharSequence) "6\\u0031", writer50);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper4);
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertNotNull(unicodeEscaper9);
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertEquals("'" + str14 + "' != '" + "hi!" + "'", str14, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertEquals("'" + str19 + "' != '" + "hi!" + "'", str19, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertTrue("'" + int26 + "' != '" + 0 + "'", int26 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(unicodeEscaper32);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray33);
org.junit.Assert.assertNotNull(charSequenceTranslator34);
org.junit.Assert.assertNotNull(charSequenceTranslator35);
org.junit.Assert.assertNotNull(charSequenceTranslator36);
org.junit.Assert.assertNotNull(unicodeEscaper39);
org.junit.Assert.assertNotNull(unicodeEscaper42);
org.junit.Assert.assertNotNull(unicodeEscaper44);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray45);
org.junit.Assert.assertNotNull(charSequenceTranslator46);
org.junit.Assert.assertNotNull(charSequenceTranslator47);
org.junit.Assert.assertNotNull(charSequenceTranslator48);
}
@Test
public void test2225() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2225");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (short) 1);
java.lang.String str3 = unicodeEscaper1.translate((java.lang.CharSequence) "6\\u0031");
java.io.Writer writer6 = null;
int int7 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030", (int) (short) 10, writer6);
java.io.Writer writer9 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper1.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030", writer9);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertEquals("'" + str3 + "' != '" + "6\\u0031" + "'", str3, "6\\u0031");
org.junit.Assert.assertTrue("'" + int7 + "' != '" + 0 + "'", int7 == 0);
}
@Test
public void test2226() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2226");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) ' ', 10);
java.io.Writer writer4 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0036\\u0038\\u005C\\u0075\\u0030\\u0030\\u0036\\u0039\\u005C\\u0075\\u0030\\u0030\\u0032\\u0031", writer4);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2227() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2227");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, (int) '#');
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str15 = unicodeEscaper13.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer21 = null;
int int22 = unicodeEscaper18.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer21);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray29 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper18, unicodeEscaper24, unicodeEscaper25, unicodeEscaper28 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator30 = unicodeEscaper13.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper10.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator32 = unicodeEscaper7.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper2.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 10, (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper39 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(1, (int) (short) 10);
java.io.Writer writer42 = null;
int int43 = unicodeEscaper39.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030", 0, writer42);
java.io.Writer writer45 = null;
boolean boolean46 = unicodeEscaper39.translate((int) (short) -1, writer45);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper49 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer51 = null;
boolean boolean52 = unicodeEscaper49.translate((int) (short) 0, writer51);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper55 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str57 = unicodeEscaper55.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper60 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str62 = unicodeEscaper60.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper65 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer68 = null;
int int69 = unicodeEscaper65.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer68);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper71 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper72 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper75 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray76 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper65, unicodeEscaper71, unicodeEscaper72, unicodeEscaper75 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator77 = unicodeEscaper60.with(charSequenceTranslatorArray76);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator78 = unicodeEscaper55.with(charSequenceTranslatorArray76);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator79 = unicodeEscaper49.with(charSequenceTranslatorArray76);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator80 = unicodeEscaper39.with(charSequenceTranslatorArray76);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator81 = unicodeEscaper36.with(charSequenceTranslatorArray76);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator82 = unicodeEscaper2.with(charSequenceTranslatorArray76);
java.io.Writer writer84 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031", writer84);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "" + "'", str4, "");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertEquals("'" + str15 + "' != '" + "hi!" + "'", str15, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertTrue("'" + int22 + "' != '" + 0 + "'", int22 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray29);
org.junit.Assert.assertNotNull(charSequenceTranslator30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
org.junit.Assert.assertNotNull(charSequenceTranslator32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
org.junit.Assert.assertNotNull(unicodeEscaper36);
org.junit.Assert.assertNotNull(unicodeEscaper39);
org.junit.Assert.assertTrue("'" + int43 + "' != '" + 0 + "'", int43 == 0);
org.junit.Assert.assertTrue("'" + boolean46 + "' != '" + false + "'", boolean46 == false);
org.junit.Assert.assertNotNull(unicodeEscaper49);
org.junit.Assert.assertTrue("'" + boolean52 + "' != '" + false + "'", boolean52 == false);
org.junit.Assert.assertNotNull(unicodeEscaper55);
org.junit.Assert.assertEquals("'" + str57 + "' != '" + "hi!" + "'", str57, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper60);
org.junit.Assert.assertEquals("'" + str62 + "' != '" + "hi!" + "'", str62, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper65);
org.junit.Assert.assertTrue("'" + int69 + "' != '" + 0 + "'", int69 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper71);
org.junit.Assert.assertNotNull(unicodeEscaper75);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray76);
org.junit.Assert.assertNotNull(charSequenceTranslator77);
org.junit.Assert.assertNotNull(charSequenceTranslator78);
org.junit.Assert.assertNotNull(charSequenceTranslator79);
org.junit.Assert.assertNotNull(charSequenceTranslator80);
org.junit.Assert.assertNotNull(charSequenceTranslator81);
org.junit.Assert.assertNotNull(charSequenceTranslator82);
}
@Test
public void test2228() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2228");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(100, 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(0, (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 100);
java.io.Writer writer9 = null;
boolean boolean10 = unicodeEscaper7.translate((int) (short) 0, writer9);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str15 = unicodeEscaper13.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer21 = null;
int int22 = unicodeEscaper18.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer21);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray29 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper18, unicodeEscaper24, unicodeEscaper25, unicodeEscaper28 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator30 = unicodeEscaper13.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper33 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str35 = unicodeEscaper33.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper38 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str40 = unicodeEscaper38.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper43 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer46 = null;
int int47 = unicodeEscaper43.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer46);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper49 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper50 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper53 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray54 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper43, unicodeEscaper49, unicodeEscaper50, unicodeEscaper53 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator55 = unicodeEscaper38.with(charSequenceTranslatorArray54);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator56 = unicodeEscaper33.with(charSequenceTranslatorArray54);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator57 = charSequenceTranslator30.with(charSequenceTranslatorArray54);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator58 = unicodeEscaper7.with(charSequenceTranslatorArray54);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator59 = unicodeEscaper5.with(charSequenceTranslatorArray54);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper62 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, 1);
java.lang.String str64 = unicodeEscaper62.translate((java.lang.CharSequence) "FFFFFFFF");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper67 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str69 = unicodeEscaper67.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper72 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str74 = unicodeEscaper72.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper77 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer80 = null;
int int81 = unicodeEscaper77.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer80);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper83 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper84 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper87 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray88 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper77, unicodeEscaper83, unicodeEscaper84, unicodeEscaper87 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator89 = unicodeEscaper72.with(charSequenceTranslatorArray88);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator90 = unicodeEscaper67.with(charSequenceTranslatorArray88);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator91 = unicodeEscaper62.with(charSequenceTranslatorArray88);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator92 = unicodeEscaper5.with(charSequenceTranslatorArray88);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator93 = unicodeEscaper2.with(charSequenceTranslatorArray88);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray94 = null;
// The following exception was thrown during execution in test generation
try {
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator95 = unicodeEscaper2.with(charSequenceTranslatorArray94);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertTrue("'" + boolean10 + "' != '" + false + "'", boolean10 == false);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertEquals("'" + str15 + "' != '" + "hi!" + "'", str15, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertTrue("'" + int22 + "' != '" + 0 + "'", int22 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray29);
org.junit.Assert.assertNotNull(charSequenceTranslator30);
org.junit.Assert.assertNotNull(unicodeEscaper33);
org.junit.Assert.assertEquals("'" + str35 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str35, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper38);
org.junit.Assert.assertEquals("'" + str40 + "' != '" + "hi!" + "'", str40, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper43);
org.junit.Assert.assertTrue("'" + int47 + "' != '" + 0 + "'", int47 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper49);
org.junit.Assert.assertNotNull(unicodeEscaper53);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray54);
org.junit.Assert.assertNotNull(charSequenceTranslator55);
org.junit.Assert.assertNotNull(charSequenceTranslator56);
org.junit.Assert.assertNotNull(charSequenceTranslator57);
org.junit.Assert.assertNotNull(charSequenceTranslator58);
org.junit.Assert.assertNotNull(charSequenceTranslator59);
org.junit.Assert.assertNotNull(unicodeEscaper62);
org.junit.Assert.assertEquals("'" + str64 + "' != '" + "FFFFFFFF" + "'", str64, "FFFFFFFF");
org.junit.Assert.assertNotNull(unicodeEscaper67);
org.junit.Assert.assertEquals("'" + str69 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str69, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper72);
org.junit.Assert.assertEquals("'" + str74 + "' != '" + "hi!" + "'", str74, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper77);
org.junit.Assert.assertTrue("'" + int81 + "' != '" + 0 + "'", int81 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper83);
org.junit.Assert.assertNotNull(unicodeEscaper87);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray88);
org.junit.Assert.assertNotNull(charSequenceTranslator89);
org.junit.Assert.assertNotNull(charSequenceTranslator90);
org.junit.Assert.assertNotNull(charSequenceTranslator91);
org.junit.Assert.assertNotNull(charSequenceTranslator92);
org.junit.Assert.assertNotNull(charSequenceTranslator93);
}
@Test
public void test2229() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2229");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (-1));
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (short) 0, writer4);
java.io.Writer writer7 = null;
boolean boolean8 = unicodeEscaper2.translate((int) (byte) 10, writer7);
java.io.Writer writer11 = null;
int int12 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0038\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0039\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0032\\u0031", 10, writer11);
java.io.Writer writer14 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "6\\u0031", writer14);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertTrue("'" + boolean8 + "' != '" + false + "'", boolean8 == false);
org.junit.Assert.assertTrue("'" + int12 + "' != '" + 0 + "'", int12 == 0);
}
@Test
public void test2230() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2230");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 100, (-1));
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer13 = null;
int int14 = unicodeEscaper10.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer13);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray21 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper10, unicodeEscaper16, unicodeEscaper17, unicodeEscaper20 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator22 = unicodeEscaper5.with(charSequenceTranslatorArray21);
java.lang.String str24 = unicodeEscaper5.translate((java.lang.CharSequence) "\\u0033\\u0034");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) 'a', (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str32 = unicodeEscaper30.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer38 = null;
int int39 = unicodeEscaper35.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer38);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper42 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper45 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray46 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper35, unicodeEscaper41, unicodeEscaper42, unicodeEscaper45 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator47 = unicodeEscaper30.with(charSequenceTranslatorArray46);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator48 = unicodeEscaper27.with(charSequenceTranslatorArray46);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator49 = unicodeEscaper5.with(charSequenceTranslatorArray46);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator50 = unicodeEscaper2.with(charSequenceTranslatorArray46);
java.io.Writer writer53 = null;
// The following exception was thrown during execution in test generation
try {
int int54 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005Cu\\u0030\\u0030\\u0033\\u0032\\u005Cu\\u0030\\u0030\\u0033\\u0030", (int) (short) 100, writer53);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: 100");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "hi!" + "'", str7, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertTrue("'" + int14 + "' != '" + 0 + "'", int14 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray21);
org.junit.Assert.assertNotNull(charSequenceTranslator22);
org.junit.Assert.assertEquals("'" + str24 + "' != '" + "\\u0033\\u0034" + "'", str24, "\\u0033\\u0034");
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertEquals("'" + str32 + "' != '" + "hi!" + "'", str32, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper35);
org.junit.Assert.assertTrue("'" + int39 + "' != '" + 0 + "'", int39 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper41);
org.junit.Assert.assertNotNull(unicodeEscaper45);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray46);
org.junit.Assert.assertNotNull(charSequenceTranslator47);
org.junit.Assert.assertNotNull(charSequenceTranslator48);
org.junit.Assert.assertNotNull(charSequenceTranslator49);
org.junit.Assert.assertNotNull(charSequenceTranslator50);
}
@Test
public void test2231() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2231");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(1, (int) (short) -1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer13 = null;
int int14 = unicodeEscaper10.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer13);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray21 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper10, unicodeEscaper16, unicodeEscaper17, unicodeEscaper20 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator22 = unicodeEscaper5.with(charSequenceTranslatorArray21);
java.lang.String str24 = unicodeEscaper5.translate((java.lang.CharSequence) "");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str29 = unicodeEscaper27.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str34 = unicodeEscaper32.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer40 = null;
int int41 = unicodeEscaper37.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer40);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper43 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper44 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper47 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray48 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper37, unicodeEscaper43, unicodeEscaper44, unicodeEscaper47 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator49 = unicodeEscaper32.with(charSequenceTranslatorArray48);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator50 = unicodeEscaper27.with(charSequenceTranslatorArray48);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper52 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper55 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer57 = null;
boolean boolean58 = unicodeEscaper55.translate((int) (short) 0, writer57);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper59 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper61 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray62 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper55, unicodeEscaper59, unicodeEscaper61 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator63 = unicodeEscaper52.with(charSequenceTranslatorArray62);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator64 = charSequenceTranslator50.with(charSequenceTranslatorArray62);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator65 = unicodeEscaper5.with(charSequenceTranslatorArray62);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator66 = unicodeEscaper2.with(charSequenceTranslatorArray62);
java.lang.CharSequence charSequence67 = null;
java.lang.String str68 = unicodeEscaper2.translate(charSequence67);
java.lang.String str70 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\\\u007500750068\\\\\\u007500750069\\\\\\u007500750021");
java.lang.Class<?> wildcardClass71 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "hi!" + "'", str7, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertTrue("'" + int14 + "' != '" + 0 + "'", int14 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray21);
org.junit.Assert.assertNotNull(charSequenceTranslator22);
org.junit.Assert.assertEquals("'" + str24 + "' != '" + "" + "'", str24, "");
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertEquals("'" + str29 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str29, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper32);
org.junit.Assert.assertEquals("'" + str34 + "' != '" + "hi!" + "'", str34, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper37);
org.junit.Assert.assertTrue("'" + int41 + "' != '" + 0 + "'", int41 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper43);
org.junit.Assert.assertNotNull(unicodeEscaper47);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray48);
org.junit.Assert.assertNotNull(charSequenceTranslator49);
org.junit.Assert.assertNotNull(charSequenceTranslator50);
org.junit.Assert.assertNotNull(unicodeEscaper52);
org.junit.Assert.assertNotNull(unicodeEscaper55);
org.junit.Assert.assertTrue("'" + boolean58 + "' != '" + false + "'", boolean58 == false);
org.junit.Assert.assertNotNull(unicodeEscaper61);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray62);
org.junit.Assert.assertNotNull(charSequenceTranslator63);
org.junit.Assert.assertNotNull(charSequenceTranslator64);
org.junit.Assert.assertNotNull(charSequenceTranslator65);
org.junit.Assert.assertNotNull(charSequenceTranslator66);
org.junit.Assert.assertNull(str68);
org.junit.Assert.assertEquals("'" + str70 + "' != '" + "\\\\\\u007500750068\\\\\\u007500750069\\\\\\u007500750021" + "'", str70, "\\\\\\u007500750068\\\\\\u007500750069\\\\\\u007500750021");
org.junit.Assert.assertNotNull(wildcardClass71);
}
@Test
public void test2232() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2232");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(1, (int) (byte) 1);
java.io.Writer writer5 = null;
// The following exception was thrown during execution in test generation
try {
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "23", (int) (byte) -1, writer5);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: -1");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2233() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2233");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) -1, 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(0, (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, (int) 'a');
java.lang.String str13 = unicodeEscaper11.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, 1);
java.lang.String str18 = unicodeEscaper16.translate((java.lang.CharSequence) "FFFFFFFF");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str23 = unicodeEscaper21.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str28 = unicodeEscaper26.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer34 = null;
int int35 = unicodeEscaper31.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer34);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper38 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray42 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper31, unicodeEscaper37, unicodeEscaper38, unicodeEscaper41 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator43 = unicodeEscaper26.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper21.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator45 = unicodeEscaper16.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator46 = unicodeEscaper11.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator47 = unicodeEscaper8.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper50 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 10, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper52 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper55 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer57 = null;
boolean boolean58 = unicodeEscaper55.translate((int) (short) 0, writer57);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper59 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper61 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray62 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper55, unicodeEscaper59, unicodeEscaper61 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator63 = unicodeEscaper52.with(charSequenceTranslatorArray62);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator64 = unicodeEscaper50.with(charSequenceTranslatorArray62);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator65 = charSequenceTranslator47.with(charSequenceTranslatorArray62);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator66 = unicodeEscaper5.with(charSequenceTranslatorArray62);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator67 = unicodeEscaper2.with(charSequenceTranslatorArray62);
java.io.Writer writer69 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030", writer69);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertEquals("'" + str13 + "' != '" + "0" + "'", str13, "0");
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertEquals("'" + str18 + "' != '" + "FFFFFFFF" + "'", str18, "FFFFFFFF");
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertEquals("'" + str23 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str23, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper26);
org.junit.Assert.assertEquals("'" + str28 + "' != '" + "hi!" + "'", str28, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertTrue("'" + int35 + "' != '" + 0 + "'", int35 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper37);
org.junit.Assert.assertNotNull(unicodeEscaper41);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray42);
org.junit.Assert.assertNotNull(charSequenceTranslator43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertNotNull(charSequenceTranslator45);
org.junit.Assert.assertNotNull(charSequenceTranslator46);
org.junit.Assert.assertNotNull(charSequenceTranslator47);
org.junit.Assert.assertNotNull(unicodeEscaper50);
org.junit.Assert.assertNotNull(unicodeEscaper52);
org.junit.Assert.assertNotNull(unicodeEscaper55);
org.junit.Assert.assertTrue("'" + boolean58 + "' != '" + false + "'", boolean58 == false);
org.junit.Assert.assertNotNull(unicodeEscaper61);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray62);
org.junit.Assert.assertNotNull(charSequenceTranslator63);
org.junit.Assert.assertNotNull(charSequenceTranslator64);
org.junit.Assert.assertNotNull(charSequenceTranslator65);
org.junit.Assert.assertNotNull(charSequenceTranslator66);
org.junit.Assert.assertNotNull(charSequenceTranslator67);
}
@Test
public void test2234() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2234");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 10, (int) '#');
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (short) -1, writer4);
java.lang.String str7 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
java.lang.Class<?> wildcardClass8 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034" + "'", str7, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
org.junit.Assert.assertNotNull(wildcardClass8);
}
@Test
public void test2235() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2235");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (int) 'a');
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0068\\u0069\\u0021");
java.io.Writer writer6 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030", writer6);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\\\u00750068\\\\u00750069\\\\u00750021" + "'", str4, "\\\\u00750068\\\\u00750069\\\\u00750021");
}
@Test
public void test2236() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2236");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str9 = unicodeEscaper7.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer15 = null;
int int16 = unicodeEscaper12.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer15);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray23 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper12, unicodeEscaper18, unicodeEscaper19, unicodeEscaper22 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator24 = unicodeEscaper7.with(charSequenceTranslatorArray23);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator25 = unicodeEscaper2.with(charSequenceTranslatorArray23);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer31 = null;
int int32 = unicodeEscaper28.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer31);
java.io.Writer writer34 = null;
boolean boolean35 = unicodeEscaper28.translate((int) (byte) -1, writer34);
java.lang.String str37 = unicodeEscaper28.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str42 = unicodeEscaper40.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray43 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper28, unicodeEscaper40 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper2.with(charSequenceTranslatorArray43);
java.lang.String str46 = unicodeEscaper2.translate((java.lang.CharSequence) "");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper49 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper52 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str54 = unicodeEscaper52.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str59 = unicodeEscaper57.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper62 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer65 = null;
int int66 = unicodeEscaper62.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer65);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper68 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper69 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper72 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray73 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper62, unicodeEscaper68, unicodeEscaper69, unicodeEscaper72 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator74 = unicodeEscaper57.with(charSequenceTranslatorArray73);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator75 = unicodeEscaper52.with(charSequenceTranslatorArray73);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator76 = unicodeEscaper49.with(charSequenceTranslatorArray73);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator77 = unicodeEscaper2.with(charSequenceTranslatorArray73);
java.lang.String str79 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "hi!" + "'", str4, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertEquals("'" + str9 + "' != '" + "hi!" + "'", str9, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertTrue("'" + int16 + "' != '" + 0 + "'", int16 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray23);
org.junit.Assert.assertNotNull(charSequenceTranslator24);
org.junit.Assert.assertNotNull(charSequenceTranslator25);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertTrue("'" + int32 + "' != '" + 0 + "'", int32 == 0);
org.junit.Assert.assertTrue("'" + boolean35 + "' != '" + false + "'", boolean35 == false);
org.junit.Assert.assertEquals("'" + str37 + "' != '" + "0" + "'", str37, "0");
org.junit.Assert.assertNotNull(unicodeEscaper40);
org.junit.Assert.assertEquals("'" + str42 + "' != '" + "hi!" + "'", str42, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertEquals("'" + str46 + "' != '" + "" + "'", str46, "");
org.junit.Assert.assertNotNull(unicodeEscaper49);
org.junit.Assert.assertNotNull(unicodeEscaper52);
org.junit.Assert.assertEquals("'" + str54 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str54, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper57);
org.junit.Assert.assertEquals("'" + str59 + "' != '" + "hi!" + "'", str59, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper62);
org.junit.Assert.assertTrue("'" + int66 + "' != '" + 0 + "'", int66 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper68);
org.junit.Assert.assertNotNull(unicodeEscaper72);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray73);
org.junit.Assert.assertNotNull(charSequenceTranslator74);
org.junit.Assert.assertNotNull(charSequenceTranslator75);
org.junit.Assert.assertNotNull(charSequenceTranslator76);
org.junit.Assert.assertNotNull(charSequenceTranslator77);
org.junit.Assert.assertEquals("'" + str79 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030" + "'", str79, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
}
@Test
public void test2237() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2237");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (short) 1);
java.io.Writer writer4 = null;
int int5 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036", (int) (short) 0, writer4);
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertTrue("'" + int5 + "' != '" + 0 + "'", int5 == 0);
}
@Test
public void test2238() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2238");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 10, (int) (short) -1);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (byte) 1, writer4);
java.io.Writer writer7 = null;
boolean boolean8 = unicodeEscaper2.translate(10, writer7);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertTrue("'" + boolean8 + "' != '" + false + "'", boolean8 == false);
}
@Test
public void test2239() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2239");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((-1), (int) (byte) 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 0, (-1));
java.io.Writer writer8 = null;
int int9 = unicodeEscaper5.translate((java.lang.CharSequence) "6\\u0031", 0, writer8);
java.io.Writer writer12 = null;
int int13 = unicodeEscaper5.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030", 100, writer12);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 0, (int) (byte) -1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) -1, 0);
java.lang.String str21 = unicodeEscaper19.translate((java.lang.CharSequence) "1");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str26 = unicodeEscaper24.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper29 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str31 = unicodeEscaper29.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper34 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer37 = null;
int int38 = unicodeEscaper34.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer37);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper44 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray45 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper34, unicodeEscaper40, unicodeEscaper41, unicodeEscaper44 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator46 = unicodeEscaper29.with(charSequenceTranslatorArray45);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator47 = unicodeEscaper24.with(charSequenceTranslatorArray45);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper50 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer53 = null;
int int54 = unicodeEscaper50.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer53);
java.io.Writer writer56 = null;
boolean boolean57 = unicodeEscaper50.translate((int) (byte) -1, writer56);
java.lang.String str59 = unicodeEscaper50.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper62 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str64 = unicodeEscaper62.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray65 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper50, unicodeEscaper62 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator66 = unicodeEscaper24.with(charSequenceTranslatorArray65);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator67 = unicodeEscaper19.with(charSequenceTranslatorArray65);
java.lang.String str69 = unicodeEscaper19.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0036\\u0038\\u005C\\u0075\\u0030\\u0030\\u0036\\u0039\\u005C\\u0075\\u0030\\u0030\\u0032\\u0031");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper72 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) 'a', (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper75 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str77 = unicodeEscaper75.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper80 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer83 = null;
int int84 = unicodeEscaper80.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer83);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper86 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper87 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper90 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray91 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper80, unicodeEscaper86, unicodeEscaper87, unicodeEscaper90 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator92 = unicodeEscaper75.with(charSequenceTranslatorArray91);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator93 = unicodeEscaper72.with(charSequenceTranslatorArray91);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator94 = unicodeEscaper19.with(charSequenceTranslatorArray91);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator95 = unicodeEscaper16.with(charSequenceTranslatorArray91);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator96 = unicodeEscaper5.with(charSequenceTranslatorArray91);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator97 = unicodeEscaper2.with(charSequenceTranslatorArray91);
java.lang.Class<?> wildcardClass98 = charSequenceTranslator97.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertTrue("'" + int9 + "' != '" + 0 + "'", int9 == 0);
org.junit.Assert.assertTrue("'" + int13 + "' != '" + 0 + "'", int13 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertNotNull(unicodeEscaper19);
org.junit.Assert.assertEquals("'" + str21 + "' != '" + "\\u0031" + "'", str21, "\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertEquals("'" + str26 + "' != '" + "hi!" + "'", str26, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper29);
org.junit.Assert.assertEquals("'" + str31 + "' != '" + "hi!" + "'", str31, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper34);
org.junit.Assert.assertTrue("'" + int38 + "' != '" + 0 + "'", int38 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper40);
org.junit.Assert.assertNotNull(unicodeEscaper44);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray45);
org.junit.Assert.assertNotNull(charSequenceTranslator46);
org.junit.Assert.assertNotNull(charSequenceTranslator47);
org.junit.Assert.assertNotNull(unicodeEscaper50);
org.junit.Assert.assertTrue("'" + int54 + "' != '" + 0 + "'", int54 == 0);
org.junit.Assert.assertTrue("'" + boolean57 + "' != '" + false + "'", boolean57 == false);
org.junit.Assert.assertEquals("'" + str59 + "' != '" + "0" + "'", str59, "0");
org.junit.Assert.assertNotNull(unicodeEscaper62);
org.junit.Assert.assertEquals("'" + str64 + "' != '" + "hi!" + "'", str64, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray65);
org.junit.Assert.assertNotNull(charSequenceTranslator66);
org.junit.Assert.assertNotNull(charSequenceTranslator67);
org.junit.Assert.assertEquals("'" + str69 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0038\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0039\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031" + "'", str69, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0038\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0039\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper72);
org.junit.Assert.assertNotNull(unicodeEscaper75);
org.junit.Assert.assertEquals("'" + str77 + "' != '" + "hi!" + "'", str77, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper80);
org.junit.Assert.assertTrue("'" + int84 + "' != '" + 0 + "'", int84 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper86);
org.junit.Assert.assertNotNull(unicodeEscaper90);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray91);
org.junit.Assert.assertNotNull(charSequenceTranslator92);
org.junit.Assert.assertNotNull(charSequenceTranslator93);
org.junit.Assert.assertNotNull(charSequenceTranslator94);
org.junit.Assert.assertNotNull(charSequenceTranslator95);
org.junit.Assert.assertNotNull(charSequenceTranslator96);
org.junit.Assert.assertNotNull(charSequenceTranslator97);
org.junit.Assert.assertNotNull(wildcardClass98);
}
@Test
public void test2240() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2240");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '#', (int) (byte) 10);
java.io.Writer writer4 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030", writer4);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2241() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2241");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 10, (int) (short) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(10, (int) (short) 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str13 = unicodeEscaper11.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str18 = unicodeEscaper16.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer24 = null;
int int25 = unicodeEscaper21.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer24);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray32 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper21, unicodeEscaper27, unicodeEscaper28, unicodeEscaper31 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper16.with(charSequenceTranslatorArray32);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator34 = unicodeEscaper11.with(charSequenceTranslatorArray32);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator35 = unicodeEscaper8.with(charSequenceTranslatorArray32);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str42 = unicodeEscaper40.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper45 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str47 = unicodeEscaper45.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper50 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer53 = null;
int int54 = unicodeEscaper50.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer53);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper56 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper60 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray61 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper50, unicodeEscaper56, unicodeEscaper57, unicodeEscaper60 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator62 = unicodeEscaper45.with(charSequenceTranslatorArray61);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator63 = unicodeEscaper40.with(charSequenceTranslatorArray61);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator64 = unicodeEscaper37.with(charSequenceTranslatorArray61);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator65 = charSequenceTranslator35.with(charSequenceTranslatorArray61);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator66 = unicodeEscaper5.with(charSequenceTranslatorArray61);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator67 = unicodeEscaper2.with(charSequenceTranslatorArray61);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertEquals("'" + str13 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str13, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertEquals("'" + str18 + "' != '" + "hi!" + "'", str18, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertTrue("'" + int25 + "' != '" + 0 + "'", int25 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
org.junit.Assert.assertNotNull(charSequenceTranslator34);
org.junit.Assert.assertNotNull(charSequenceTranslator35);
org.junit.Assert.assertNotNull(unicodeEscaper37);
org.junit.Assert.assertNotNull(unicodeEscaper40);
org.junit.Assert.assertEquals("'" + str42 + "' != '" + "hi!" + "'", str42, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper45);
org.junit.Assert.assertEquals("'" + str47 + "' != '" + "hi!" + "'", str47, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper50);
org.junit.Assert.assertTrue("'" + int54 + "' != '" + 0 + "'", int54 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper56);
org.junit.Assert.assertNotNull(unicodeEscaper60);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray61);
org.junit.Assert.assertNotNull(charSequenceTranslator62);
org.junit.Assert.assertNotNull(charSequenceTranslator63);
org.junit.Assert.assertNotNull(charSequenceTranslator64);
org.junit.Assert.assertNotNull(charSequenceTranslator65);
org.junit.Assert.assertNotNull(charSequenceTranslator66);
org.junit.Assert.assertNotNull(charSequenceTranslator67);
}
@Test
public void test2242() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2242");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, 1);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
java.lang.String str6 = unicodeEscaper2.translate((java.lang.CharSequence) "64");
java.lang.String str8 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
java.lang.String str10 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
java.io.Writer writer12 = null;
boolean boolean13 = unicodeEscaper2.translate((int) (short) 0, writer12);
java.io.Writer writer16 = null;
int int17 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750036\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750034", (int) 'a', writer16);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030" + "'", str4, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
org.junit.Assert.assertEquals("'" + str6 + "' != '" + "64" + "'", str6, "64");
org.junit.Assert.assertEquals("'" + str8 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034" + "'", str8, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
org.junit.Assert.assertEquals("'" + str10 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034" + "'", str10, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
org.junit.Assert.assertTrue("'" + boolean13 + "' != '" + false + "'", boolean13 == false);
org.junit.Assert.assertTrue("'" + int17 + "' != '" + 0 + "'", int17 == 0);
}
@Test
public void test2243() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2243");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(0, (int) ' ');
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u00750030");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(10, (int) '4');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper9 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) 'a');
java.io.Writer writer11 = null;
boolean boolean12 = unicodeEscaper9.translate((int) '4', writer11);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str22 = unicodeEscaper20.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str27 = unicodeEscaper25.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer33 = null;
int int34 = unicodeEscaper30.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer33);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray41 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper30, unicodeEscaper36, unicodeEscaper37, unicodeEscaper40 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator42 = unicodeEscaper25.with(charSequenceTranslatorArray41);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator43 = unicodeEscaper20.with(charSequenceTranslatorArray41);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper17.with(charSequenceTranslatorArray41);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator45 = unicodeEscaper15.with(charSequenceTranslatorArray41);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator46 = unicodeEscaper9.with(charSequenceTranslatorArray41);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator47 = unicodeEscaper7.with(charSequenceTranslatorArray41);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator48 = unicodeEscaper2.with(charSequenceTranslatorArray41);
java.io.Writer writer50 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0038\\u005C\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0039\\u005C\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0032\\u0031", writer50);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\\\u00750030" + "'", str4, "\\\\u00750030");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertNotNull(unicodeEscaper9);
org.junit.Assert.assertTrue("'" + boolean12 + "' != '" + false + "'", boolean12 == false);
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertEquals("'" + str22 + "' != '" + "hi!" + "'", str22, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertEquals("'" + str27 + "' != '" + "hi!" + "'", str27, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertTrue("'" + int34 + "' != '" + 0 + "'", int34 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper36);
org.junit.Assert.assertNotNull(unicodeEscaper40);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray41);
org.junit.Assert.assertNotNull(charSequenceTranslator42);
org.junit.Assert.assertNotNull(charSequenceTranslator43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertNotNull(charSequenceTranslator45);
org.junit.Assert.assertNotNull(charSequenceTranslator46);
org.junit.Assert.assertNotNull(charSequenceTranslator47);
org.junit.Assert.assertNotNull(charSequenceTranslator48);
}
@Test
public void test2244() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2244");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above(100);
java.io.Writer writer4 = null;
int int5 = unicodeEscaper1.translate((java.lang.CharSequence) "6\\u0031", (int) (short) 0, writer4);
java.io.Writer writer7 = null;
boolean boolean8 = unicodeEscaper1.translate((int) (short) 10, writer7);
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertTrue("'" + int5 + "' != '" + 0 + "'", int5 == 0);
org.junit.Assert.assertTrue("'" + boolean8 + "' != '" + false + "'", boolean8 == false);
}
@Test
public void test2245() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2245");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) -1, (int) (byte) -1);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0031");
java.io.Writer writer6 = null;
boolean boolean7 = unicodeEscaper2.translate(10, writer6);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u0031" + "'", str4, "\\u0031");
org.junit.Assert.assertTrue("'" + boolean7 + "' != '" + false + "'", boolean7 == false);
}
@Test
public void test2246() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2246");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, (int) (byte) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper4 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 100, (int) 'a');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str12 = unicodeEscaper10.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str17 = unicodeEscaper15.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer23 = null;
int int24 = unicodeEscaper20.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer23);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray31 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper20, unicodeEscaper26, unicodeEscaper27, unicodeEscaper30 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator32 = unicodeEscaper15.with(charSequenceTranslatorArray31);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper10.with(charSequenceTranslatorArray31);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer39 = null;
int int40 = unicodeEscaper36.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer39);
java.io.Writer writer42 = null;
boolean boolean43 = unicodeEscaper36.translate((int) (byte) -1, writer42);
java.lang.String str45 = unicodeEscaper36.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper48 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str50 = unicodeEscaper48.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray51 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper36, unicodeEscaper48 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator52 = unicodeEscaper10.with(charSequenceTranslatorArray51);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator53 = unicodeEscaper7.with(charSequenceTranslatorArray51);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator54 = unicodeEscaper4.with(charSequenceTranslatorArray51);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator55 = unicodeEscaper2.with(charSequenceTranslatorArray51);
java.io.Writer writer57 = null;
// The following exception was thrown during execution in test generation
try {
charSequenceTranslator55.translate((java.lang.CharSequence) "\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036\\u005Cu\\u0030\\u0030\\u0034\\u0036", writer57);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper4);
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertEquals("'" + str12 + "' != '" + "hi!" + "'", str12, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertEquals("'" + str17 + "' != '" + "hi!" + "'", str17, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertTrue("'" + int24 + "' != '" + 0 + "'", int24 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper26);
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray31);
org.junit.Assert.assertNotNull(charSequenceTranslator32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
org.junit.Assert.assertNotNull(unicodeEscaper36);
org.junit.Assert.assertTrue("'" + int40 + "' != '" + 0 + "'", int40 == 0);
org.junit.Assert.assertTrue("'" + boolean43 + "' != '" + false + "'", boolean43 == false);
org.junit.Assert.assertEquals("'" + str45 + "' != '" + "0" + "'", str45, "0");
org.junit.Assert.assertNotNull(unicodeEscaper48);
org.junit.Assert.assertEquals("'" + str50 + "' != '" + "hi!" + "'", str50, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray51);
org.junit.Assert.assertNotNull(charSequenceTranslator52);
org.junit.Assert.assertNotNull(charSequenceTranslator53);
org.junit.Assert.assertNotNull(charSequenceTranslator54);
org.junit.Assert.assertNotNull(charSequenceTranslator55);
}
@Test
public void test2247() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2247");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) -1);
java.io.Writer writer3 = null;
boolean boolean4 = unicodeEscaper1.translate((int) '#', writer3);
java.io.Writer writer6 = null;
boolean boolean7 = unicodeEscaper1.translate(100, writer6);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper9 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (short) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) -1, (int) (short) -1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str17 = unicodeEscaper15.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str22 = unicodeEscaper20.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer28 = null;
int int29 = unicodeEscaper25.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer28);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray36 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper25, unicodeEscaper31, unicodeEscaper32, unicodeEscaper35 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator37 = unicodeEscaper20.with(charSequenceTranslatorArray36);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator38 = unicodeEscaper15.with(charSequenceTranslatorArray36);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer44 = null;
int int45 = unicodeEscaper41.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer44);
java.io.Writer writer47 = null;
boolean boolean48 = unicodeEscaper41.translate((int) (byte) -1, writer47);
java.lang.String str50 = unicodeEscaper41.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper53 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str55 = unicodeEscaper53.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray56 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper41, unicodeEscaper53 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator57 = unicodeEscaper15.with(charSequenceTranslatorArray56);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator58 = unicodeEscaper12.with(charSequenceTranslatorArray56);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator59 = unicodeEscaper9.with(charSequenceTranslatorArray56);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator60 = unicodeEscaper1.with(charSequenceTranslatorArray56);
java.io.Writer writer62 = null;
boolean boolean63 = unicodeEscaper1.translate((int) (short) 10, writer62);
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertTrue("'" + boolean4 + "' != '" + false + "'", boolean4 == false);
org.junit.Assert.assertTrue("'" + boolean7 + "' != '" + false + "'", boolean7 == false);
org.junit.Assert.assertNotNull(unicodeEscaper9);
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertEquals("'" + str17 + "' != '" + "hi!" + "'", str17, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertEquals("'" + str22 + "' != '" + "hi!" + "'", str22, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertTrue("'" + int29 + "' != '" + 0 + "'", int29 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertNotNull(unicodeEscaper35);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray36);
org.junit.Assert.assertNotNull(charSequenceTranslator37);
org.junit.Assert.assertNotNull(charSequenceTranslator38);
org.junit.Assert.assertNotNull(unicodeEscaper41);
org.junit.Assert.assertTrue("'" + int45 + "' != '" + 0 + "'", int45 == 0);
org.junit.Assert.assertTrue("'" + boolean48 + "' != '" + false + "'", boolean48 == false);
org.junit.Assert.assertEquals("'" + str50 + "' != '" + "0" + "'", str50, "0");
org.junit.Assert.assertNotNull(unicodeEscaper53);
org.junit.Assert.assertEquals("'" + str55 + "' != '" + "hi!" + "'", str55, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray56);
org.junit.Assert.assertNotNull(charSequenceTranslator57);
org.junit.Assert.assertNotNull(charSequenceTranslator58);
org.junit.Assert.assertNotNull(charSequenceTranslator59);
org.junit.Assert.assertNotNull(charSequenceTranslator60);
org.junit.Assert.assertTrue("'" + boolean63 + "' != '" + false + "'", boolean63 == false);
}
@Test
public void test2248() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2248");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((-1), 1);
java.io.Writer writer4 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031", writer4);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2249() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2249");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, (int) (byte) -1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(10, 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) '4', (int) (byte) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str13 = unicodeEscaper11.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str18 = unicodeEscaper16.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer24 = null;
int int25 = unicodeEscaper21.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer24);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray32 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper21, unicodeEscaper27, unicodeEscaper28, unicodeEscaper31 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper16.with(charSequenceTranslatorArray32);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator34 = unicodeEscaper11.with(charSequenceTranslatorArray32);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer40 = null;
int int41 = unicodeEscaper37.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer40);
java.io.Writer writer43 = null;
boolean boolean44 = unicodeEscaper37.translate((int) (byte) -1, writer43);
java.lang.String str46 = unicodeEscaper37.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper49 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str51 = unicodeEscaper49.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray52 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper37, unicodeEscaper49 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator53 = unicodeEscaper11.with(charSequenceTranslatorArray52);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator54 = unicodeEscaper8.with(charSequenceTranslatorArray52);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator55 = unicodeEscaper5.with(charSequenceTranslatorArray52);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator56 = unicodeEscaper2.with(charSequenceTranslatorArray52);
java.lang.Class<?> wildcardClass57 = charSequenceTranslatorArray52.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertEquals("'" + str13 + "' != '" + "hi!" + "'", str13, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertEquals("'" + str18 + "' != '" + "hi!" + "'", str18, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertTrue("'" + int25 + "' != '" + 0 + "'", int25 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
org.junit.Assert.assertNotNull(charSequenceTranslator34);
org.junit.Assert.assertNotNull(unicodeEscaper37);
org.junit.Assert.assertTrue("'" + int41 + "' != '" + 0 + "'", int41 == 0);
org.junit.Assert.assertTrue("'" + boolean44 + "' != '" + false + "'", boolean44 == false);
org.junit.Assert.assertEquals("'" + str46 + "' != '" + "0" + "'", str46, "0");
org.junit.Assert.assertNotNull(unicodeEscaper49);
org.junit.Assert.assertEquals("'" + str51 + "' != '" + "hi!" + "'", str51, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray52);
org.junit.Assert.assertNotNull(charSequenceTranslator53);
org.junit.Assert.assertNotNull(charSequenceTranslator54);
org.junit.Assert.assertNotNull(charSequenceTranslator55);
org.junit.Assert.assertNotNull(charSequenceTranslator56);
org.junit.Assert.assertNotNull(wildcardClass57);
}
@Test
public void test2250() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2250");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (-1));
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (short) 0, writer4);
java.lang.String str7 = unicodeEscaper2.translate((java.lang.CharSequence) "1");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(1, (-1));
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer17 = null;
boolean boolean18 = unicodeEscaper15.translate((int) (short) 0, writer17);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray22 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper15, unicodeEscaper19, unicodeEscaper21 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator23 = unicodeEscaper12.with(charSequenceTranslatorArray22);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator24 = unicodeEscaper10.with(charSequenceTranslatorArray22);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str29 = unicodeEscaper27.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer35 = null;
int int36 = unicodeEscaper32.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer35);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper38 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper39 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper42 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray43 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper32, unicodeEscaper38, unicodeEscaper39, unicodeEscaper42 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper27.with(charSequenceTranslatorArray43);
java.lang.String str46 = unicodeEscaper27.translate((java.lang.CharSequence) "");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper49 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper51 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper54 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str56 = unicodeEscaper54.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper59 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str61 = unicodeEscaper59.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper64 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer67 = null;
int int68 = unicodeEscaper64.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer67);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper70 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper71 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper74 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray75 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper64, unicodeEscaper70, unicodeEscaper71, unicodeEscaper74 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator76 = unicodeEscaper59.with(charSequenceTranslatorArray75);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator77 = unicodeEscaper54.with(charSequenceTranslatorArray75);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator78 = unicodeEscaper51.with(charSequenceTranslatorArray75);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator79 = unicodeEscaper49.with(charSequenceTranslatorArray75);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator80 = unicodeEscaper27.with(charSequenceTranslatorArray75);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator81 = charSequenceTranslator24.with(charSequenceTranslatorArray75);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator82 = unicodeEscaper2.with(charSequenceTranslatorArray75);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "1" + "'", str7, "1");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertTrue("'" + boolean18 + "' != '" + false + "'", boolean18 == false);
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray22);
org.junit.Assert.assertNotNull(charSequenceTranslator23);
org.junit.Assert.assertNotNull(charSequenceTranslator24);
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertEquals("'" + str29 + "' != '" + "hi!" + "'", str29, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper32);
org.junit.Assert.assertTrue("'" + int36 + "' != '" + 0 + "'", int36 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper38);
org.junit.Assert.assertNotNull(unicodeEscaper42);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertEquals("'" + str46 + "' != '" + "" + "'", str46, "");
org.junit.Assert.assertNotNull(unicodeEscaper49);
org.junit.Assert.assertNotNull(unicodeEscaper51);
org.junit.Assert.assertNotNull(unicodeEscaper54);
org.junit.Assert.assertEquals("'" + str56 + "' != '" + "hi!" + "'", str56, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper59);
org.junit.Assert.assertEquals("'" + str61 + "' != '" + "hi!" + "'", str61, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper64);
org.junit.Assert.assertTrue("'" + int68 + "' != '" + 0 + "'", int68 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper70);
org.junit.Assert.assertNotNull(unicodeEscaper74);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray75);
org.junit.Assert.assertNotNull(charSequenceTranslator76);
org.junit.Assert.assertNotNull(charSequenceTranslator77);
org.junit.Assert.assertNotNull(charSequenceTranslator78);
org.junit.Assert.assertNotNull(charSequenceTranslator79);
org.junit.Assert.assertNotNull(charSequenceTranslator80);
org.junit.Assert.assertNotNull(charSequenceTranslator81);
org.junit.Assert.assertNotNull(charSequenceTranslator82);
}
@Test
public void test2251() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2251");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(10, 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) '4', (int) (byte) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str10 = unicodeEscaper8.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str15 = unicodeEscaper13.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer21 = null;
int int22 = unicodeEscaper18.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer21);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray29 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper18, unicodeEscaper24, unicodeEscaper25, unicodeEscaper28 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator30 = unicodeEscaper13.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper8.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper34 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer37 = null;
int int38 = unicodeEscaper34.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer37);
java.io.Writer writer40 = null;
boolean boolean41 = unicodeEscaper34.translate((int) (byte) -1, writer40);
java.lang.String str43 = unicodeEscaper34.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper46 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str48 = unicodeEscaper46.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray49 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper34, unicodeEscaper46 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator50 = unicodeEscaper8.with(charSequenceTranslatorArray49);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator51 = unicodeEscaper5.with(charSequenceTranslatorArray49);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator52 = unicodeEscaper2.with(charSequenceTranslatorArray49);
java.lang.String str54 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertEquals("'" + str10 + "' != '" + "hi!" + "'", str10, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertEquals("'" + str15 + "' != '" + "hi!" + "'", str15, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertTrue("'" + int22 + "' != '" + 0 + "'", int22 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray29);
org.junit.Assert.assertNotNull(charSequenceTranslator30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
org.junit.Assert.assertNotNull(unicodeEscaper34);
org.junit.Assert.assertTrue("'" + int38 + "' != '" + 0 + "'", int38 == 0);
org.junit.Assert.assertTrue("'" + boolean41 + "' != '" + false + "'", boolean41 == false);
org.junit.Assert.assertEquals("'" + str43 + "' != '" + "0" + "'", str43, "0");
org.junit.Assert.assertNotNull(unicodeEscaper46);
org.junit.Assert.assertEquals("'" + str48 + "' != '" + "hi!" + "'", str48, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray49);
org.junit.Assert.assertNotNull(charSequenceTranslator50);
org.junit.Assert.assertNotNull(charSequenceTranslator51);
org.junit.Assert.assertNotNull(charSequenceTranslator52);
org.junit.Assert.assertEquals("'" + str54 + "' != '" + "\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031" + "'", str54, "\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
}
@Test
public void test2252() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2252");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 10, (int) (byte) 0);
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2253() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2253");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(0, (int) (byte) 1);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750036\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750031");
java.io.Writer writer6 = null;
boolean boolean7 = unicodeEscaper2.translate((int) '4', writer6);
java.lang.String str9 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u00750036\\\\u00750031");
java.io.Writer writer11 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\u0036\\u0034", writer11);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750036\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750031" + "'", str4, "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750036\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750031");
org.junit.Assert.assertTrue("'" + boolean7 + "' != '" + false + "'", boolean7 == false);
org.junit.Assert.assertEquals("'" + str9 + "' != '" + "\\\\u00750036\\\\u00750031" + "'", str9, "\\\\u00750036\\\\u00750031");
}
@Test
public void test2254() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2254");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (short) -1);
java.lang.CharSequence charSequence2 = null;
java.lang.String str3 = unicodeEscaper1.translate(charSequence2);
java.io.Writer writer5 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper1.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034", writer5);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertNull(str3);
}
@Test
public void test2255() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2255");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 1, (int) (short) 0);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (short) 10, writer4);
java.io.Writer writer8 = null;
// The following exception was thrown during execution in test generation
try {
int int9 = unicodeEscaper2.translate((java.lang.CharSequence) "6\\\\u00750031", 100, writer8);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: 100");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
}
@Test
public void test2256() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2256");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 0, (int) (byte) -1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) -1, 0);
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "1");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str12 = unicodeEscaper10.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str17 = unicodeEscaper15.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer23 = null;
int int24 = unicodeEscaper20.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer23);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray31 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper20, unicodeEscaper26, unicodeEscaper27, unicodeEscaper30 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator32 = unicodeEscaper15.with(charSequenceTranslatorArray31);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper10.with(charSequenceTranslatorArray31);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer39 = null;
int int40 = unicodeEscaper36.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer39);
java.io.Writer writer42 = null;
boolean boolean43 = unicodeEscaper36.translate((int) (byte) -1, writer42);
java.lang.String str45 = unicodeEscaper36.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper48 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str50 = unicodeEscaper48.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray51 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper36, unicodeEscaper48 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator52 = unicodeEscaper10.with(charSequenceTranslatorArray51);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator53 = unicodeEscaper5.with(charSequenceTranslatorArray51);
java.lang.String str55 = unicodeEscaper5.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0036\\u0038\\u005C\\u0075\\u0030\\u0030\\u0036\\u0039\\u005C\\u0075\\u0030\\u0030\\u0032\\u0031");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper58 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) 'a', (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper61 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str63 = unicodeEscaper61.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper66 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer69 = null;
int int70 = unicodeEscaper66.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer69);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper72 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper73 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper76 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray77 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper66, unicodeEscaper72, unicodeEscaper73, unicodeEscaper76 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator78 = unicodeEscaper61.with(charSequenceTranslatorArray77);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator79 = unicodeEscaper58.with(charSequenceTranslatorArray77);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator80 = unicodeEscaper5.with(charSequenceTranslatorArray77);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator81 = unicodeEscaper2.with(charSequenceTranslatorArray77);
java.lang.String str83 = charSequenceTranslator81.translate((java.lang.CharSequence) "\\u0068\\u0069\\u0021");
java.lang.Class<?> wildcardClass84 = charSequenceTranslator81.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "\\u0031" + "'", str7, "\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertEquals("'" + str12 + "' != '" + "hi!" + "'", str12, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertEquals("'" + str17 + "' != '" + "hi!" + "'", str17, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertTrue("'" + int24 + "' != '" + 0 + "'", int24 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper26);
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray31);
org.junit.Assert.assertNotNull(charSequenceTranslator32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
org.junit.Assert.assertNotNull(unicodeEscaper36);
org.junit.Assert.assertTrue("'" + int40 + "' != '" + 0 + "'", int40 == 0);
org.junit.Assert.assertTrue("'" + boolean43 + "' != '" + false + "'", boolean43 == false);
org.junit.Assert.assertEquals("'" + str45 + "' != '" + "0" + "'", str45, "0");
org.junit.Assert.assertNotNull(unicodeEscaper48);
org.junit.Assert.assertEquals("'" + str50 + "' != '" + "hi!" + "'", str50, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray51);
org.junit.Assert.assertNotNull(charSequenceTranslator52);
org.junit.Assert.assertNotNull(charSequenceTranslator53);
org.junit.Assert.assertEquals("'" + str55 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0038\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0039\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031" + "'", str55, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0038\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0039\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper58);
org.junit.Assert.assertNotNull(unicodeEscaper61);
org.junit.Assert.assertEquals("'" + str63 + "' != '" + "hi!" + "'", str63, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper66);
org.junit.Assert.assertTrue("'" + int70 + "' != '" + 0 + "'", int70 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper72);
org.junit.Assert.assertNotNull(unicodeEscaper76);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray77);
org.junit.Assert.assertNotNull(charSequenceTranslator78);
org.junit.Assert.assertNotNull(charSequenceTranslator79);
org.junit.Assert.assertNotNull(charSequenceTranslator80);
org.junit.Assert.assertNotNull(charSequenceTranslator81);
org.junit.Assert.assertEquals("'" + str83 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0036\\u0038\\u005C\\u0075\\u0030\\u0030\\u0036\\u0039\\u005C\\u0075\\u0030\\u0030\\u0032\\u0031" + "'", str83, "\\u005C\\u0075\\u0030\\u0030\\u0036\\u0038\\u005C\\u0075\\u0030\\u0030\\u0036\\u0039\\u005C\\u0075\\u0030\\u0030\\u0032\\u0031");
org.junit.Assert.assertNotNull(wildcardClass84);
}
@Test
public void test2257() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2257");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(1, 1);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate(100, writer4);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str15 = unicodeEscaper13.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str20 = unicodeEscaper18.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper23 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer26 = null;
int int27 = unicodeEscaper23.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer26);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper29 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper33 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray34 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper23, unicodeEscaper29, unicodeEscaper30, unicodeEscaper33 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator35 = unicodeEscaper18.with(charSequenceTranslatorArray34);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator36 = unicodeEscaper13.with(charSequenceTranslatorArray34);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator37 = unicodeEscaper10.with(charSequenceTranslatorArray34);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator38 = unicodeEscaper8.with(charSequenceTranslatorArray34);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator39 = unicodeEscaper2.with(charSequenceTranslatorArray34);
java.lang.Class<?> wildcardClass40 = charSequenceTranslator39.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertEquals("'" + str15 + "' != '" + "hi!" + "'", str15, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertEquals("'" + str20 + "' != '" + "hi!" + "'", str20, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper23);
org.junit.Assert.assertTrue("'" + int27 + "' != '" + 0 + "'", int27 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper29);
org.junit.Assert.assertNotNull(unicodeEscaper33);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray34);
org.junit.Assert.assertNotNull(charSequenceTranslator35);
org.junit.Assert.assertNotNull(charSequenceTranslator36);
org.junit.Assert.assertNotNull(charSequenceTranslator37);
org.junit.Assert.assertNotNull(charSequenceTranslator38);
org.junit.Assert.assertNotNull(charSequenceTranslator39);
org.junit.Assert.assertNotNull(wildcardClass40);
}
@Test
public void test2258() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2258");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0032\\u0030");
java.io.Writer writer6 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "6\\\\u00750031", writer6);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u0032\\u0030" + "'", str4, "\\u0032\\u0030");
}
@Test
public void test2259() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2259");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(1, (int) 'a');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, 1);
java.io.Writer writer11 = null;
int int12 = unicodeEscaper8.translate((java.lang.CharSequence) "61", (int) (short) 0, writer11);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str20 = unicodeEscaper18.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper23 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str25 = unicodeEscaper23.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer31 = null;
int int32 = unicodeEscaper28.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer31);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper34 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper38 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray39 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper28, unicodeEscaper34, unicodeEscaper35, unicodeEscaper38 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator40 = unicodeEscaper23.with(charSequenceTranslatorArray39);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator41 = unicodeEscaper18.with(charSequenceTranslatorArray39);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator42 = unicodeEscaper15.with(charSequenceTranslatorArray39);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator43 = unicodeEscaper8.with(charSequenceTranslatorArray39);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper5.with(charSequenceTranslatorArray39);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator45 = unicodeEscaper2.with(charSequenceTranslatorArray39);
java.io.Writer writer47 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean48 = unicodeEscaper2.translate((int) (byte) -1, writer47);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertTrue("'" + int12 + "' != '" + 0 + "'", int12 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertEquals("'" + str20 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str20, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper23);
org.junit.Assert.assertEquals("'" + str25 + "' != '" + "hi!" + "'", str25, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertTrue("'" + int32 + "' != '" + 0 + "'", int32 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper34);
org.junit.Assert.assertNotNull(unicodeEscaper38);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray39);
org.junit.Assert.assertNotNull(charSequenceTranslator40);
org.junit.Assert.assertNotNull(charSequenceTranslator41);
org.junit.Assert.assertNotNull(charSequenceTranslator42);
org.junit.Assert.assertNotNull(charSequenceTranslator43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertNotNull(charSequenceTranslator45);
}
@Test
public void test2260() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2260");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 1, 100);
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2261() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2261");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, 100);
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u005Cu\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0038\\u005C\\u005C\\u005Cu\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0039\\u005C\\u005C\\u005Cu\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0032\\u0031", (int) ' ', writer5);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
}
@Test
public void test2262() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2262");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) -1, (int) (byte) -1);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) 'a', writer4);
java.io.Writer writer7 = null;
boolean boolean8 = unicodeEscaper2.translate((int) (byte) 1, writer7);
java.io.Writer writer11 = null;
int int12 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0036\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0034", 0, writer11);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertTrue("'" + boolean8 + "' != '" + false + "'", boolean8 == false);
org.junit.Assert.assertTrue("'" + int12 + "' != '" + 0 + "'", int12 == 0);
}
@Test
public void test2263() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2263");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) '4');
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0030");
java.lang.Class<?> wildcardClass5 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u0030" + "'", str4, "\\u0030");
org.junit.Assert.assertNotNull(wildcardClass5);
}
@Test
public void test2264() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2264");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) 'a', (int) 'a');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str12 = unicodeEscaper10.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer18 = null;
int int19 = unicodeEscaper15.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer18);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray26 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper15, unicodeEscaper21, unicodeEscaper22, unicodeEscaper25 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator27 = unicodeEscaper10.with(charSequenceTranslatorArray26);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator28 = unicodeEscaper5.with(charSequenceTranslatorArray26);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper33 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer35 = null;
boolean boolean36 = unicodeEscaper33.translate((int) (short) 0, writer35);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper39 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray40 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper33, unicodeEscaper37, unicodeEscaper39 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator41 = unicodeEscaper30.with(charSequenceTranslatorArray40);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator42 = charSequenceTranslator28.with(charSequenceTranslatorArray40);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator43 = unicodeEscaper2.with(charSequenceTranslatorArray40);
java.io.Writer writer45 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean46 = unicodeEscaper2.translate((-1), writer45);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str7, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertEquals("'" + str12 + "' != '" + "hi!" + "'", str12, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertTrue("'" + int19 + "' != '" + 0 + "'", int19 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray26);
org.junit.Assert.assertNotNull(charSequenceTranslator27);
org.junit.Assert.assertNotNull(charSequenceTranslator28);
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertNotNull(unicodeEscaper33);
org.junit.Assert.assertTrue("'" + boolean36 + "' != '" + false + "'", boolean36 == false);
org.junit.Assert.assertNotNull(unicodeEscaper39);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray40);
org.junit.Assert.assertNotNull(charSequenceTranslator41);
org.junit.Assert.assertNotNull(charSequenceTranslator42);
org.junit.Assert.assertNotNull(charSequenceTranslator43);
}
@Test
public void test2265() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2265");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "hi!");
java.lang.String str6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0041");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper9 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, (int) 'a');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 10, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer19 = null;
boolean boolean20 = unicodeEscaper17.translate((int) (short) 0, writer19);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper23 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray24 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper17, unicodeEscaper21, unicodeEscaper23 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator25 = unicodeEscaper14.with(charSequenceTranslatorArray24);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator26 = unicodeEscaper12.with(charSequenceTranslatorArray24);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator27 = unicodeEscaper9.with(charSequenceTranslatorArray24);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator28 = unicodeEscaper2.with(charSequenceTranslatorArray24);
java.io.Writer writer30 = null;
// The following exception was thrown during execution in test generation
try {
charSequenceTranslator28.translate((java.lang.CharSequence) "\\u0030", writer30);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "hi!" + "'", str4, "hi!");
org.junit.Assert.assertEquals("'" + str6 + "' != '" + "\\u0041" + "'", str6, "\\u0041");
org.junit.Assert.assertNotNull(unicodeEscaper9);
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertNotNull(unicodeEscaper14);
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertTrue("'" + boolean20 + "' != '" + false + "'", boolean20 == false);
org.junit.Assert.assertNotNull(unicodeEscaper23);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray24);
org.junit.Assert.assertNotNull(charSequenceTranslator25);
org.junit.Assert.assertNotNull(charSequenceTranslator26);
org.junit.Assert.assertNotNull(charSequenceTranslator27);
org.junit.Assert.assertNotNull(charSequenceTranslator28);
}
@Test
public void test2266() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2266");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(0, (int) (byte) 1);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "1");
java.io.Writer writer7 = null;
int int8 = unicodeEscaper2.translate((java.lang.CharSequence) "23", (int) (byte) 1, writer7);
java.io.Writer writer10 = null;
boolean boolean11 = unicodeEscaper2.translate((int) (short) 100, writer10);
java.io.Writer writer14 = null;
int int15 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0038\\u005C\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0039\\u005C\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0032\\u0031", 0, writer14);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "1" + "'", str4, "1");
org.junit.Assert.assertTrue("'" + int8 + "' != '" + 0 + "'", int8 == 0);
org.junit.Assert.assertTrue("'" + boolean11 + "' != '" + false + "'", boolean11 == false);
org.junit.Assert.assertTrue("'" + int15 + "' != '" + 0 + "'", int15 == 0);
}
@Test
public void test2267() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2267");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 1, (int) (short) -1);
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2268() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2268");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str9 = unicodeEscaper7.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer15 = null;
int int16 = unicodeEscaper12.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer15);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray23 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper12, unicodeEscaper18, unicodeEscaper19, unicodeEscaper22 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator24 = unicodeEscaper7.with(charSequenceTranslatorArray23);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator25 = unicodeEscaper2.with(charSequenceTranslatorArray23);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str30 = unicodeEscaper28.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper33 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str35 = unicodeEscaper33.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper38 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer41 = null;
int int42 = unicodeEscaper38.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer41);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper44 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper45 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper48 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray49 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper38, unicodeEscaper44, unicodeEscaper45, unicodeEscaper48 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator50 = unicodeEscaper33.with(charSequenceTranslatorArray49);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator51 = unicodeEscaper28.with(charSequenceTranslatorArray49);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator52 = charSequenceTranslator25.with(charSequenceTranslatorArray49);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper55 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 10, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper60 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer62 = null;
boolean boolean63 = unicodeEscaper60.translate((int) (short) 0, writer62);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper64 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper66 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray67 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper60, unicodeEscaper64, unicodeEscaper66 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator68 = unicodeEscaper57.with(charSequenceTranslatorArray67);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator69 = unicodeEscaper55.with(charSequenceTranslatorArray67);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator70 = charSequenceTranslator25.with(charSequenceTranslatorArray67);
java.io.Writer writer72 = null;
// The following exception was thrown during execution in test generation
try {
charSequenceTranslator25.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030", writer72);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "hi!" + "'", str4, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertEquals("'" + str9 + "' != '" + "hi!" + "'", str9, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertTrue("'" + int16 + "' != '" + 0 + "'", int16 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray23);
org.junit.Assert.assertNotNull(charSequenceTranslator24);
org.junit.Assert.assertNotNull(charSequenceTranslator25);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertEquals("'" + str30 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str30, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper33);
org.junit.Assert.assertEquals("'" + str35 + "' != '" + "hi!" + "'", str35, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper38);
org.junit.Assert.assertTrue("'" + int42 + "' != '" + 0 + "'", int42 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper44);
org.junit.Assert.assertNotNull(unicodeEscaper48);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray49);
org.junit.Assert.assertNotNull(charSequenceTranslator50);
org.junit.Assert.assertNotNull(charSequenceTranslator51);
org.junit.Assert.assertNotNull(charSequenceTranslator52);
org.junit.Assert.assertNotNull(unicodeEscaper55);
org.junit.Assert.assertNotNull(unicodeEscaper57);
org.junit.Assert.assertNotNull(unicodeEscaper60);
org.junit.Assert.assertTrue("'" + boolean63 + "' != '" + false + "'", boolean63 == false);
org.junit.Assert.assertNotNull(unicodeEscaper66);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray67);
org.junit.Assert.assertNotNull(charSequenceTranslator68);
org.junit.Assert.assertNotNull(charSequenceTranslator69);
org.junit.Assert.assertNotNull(charSequenceTranslator70);
}
@Test
public void test2269() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2269");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) 'a', (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 0, (-1));
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) 'a', (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str13 = unicodeEscaper11.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer19 = null;
int int20 = unicodeEscaper16.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer19);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper23 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray27 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper16, unicodeEscaper22, unicodeEscaper23, unicodeEscaper26 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator28 = unicodeEscaper11.with(charSequenceTranslatorArray27);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator29 = unicodeEscaper8.with(charSequenceTranslatorArray27);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str37 = unicodeEscaper35.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer43 = null;
int int44 = unicodeEscaper40.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer43);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper46 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper47 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper50 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray51 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper40, unicodeEscaper46, unicodeEscaper47, unicodeEscaper50 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator52 = unicodeEscaper35.with(charSequenceTranslatorArray51);
java.lang.String str54 = unicodeEscaper35.translate((java.lang.CharSequence) "");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str59 = unicodeEscaper57.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper62 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str64 = unicodeEscaper62.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper67 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer70 = null;
int int71 = unicodeEscaper67.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer70);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper73 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper74 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper77 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray78 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper67, unicodeEscaper73, unicodeEscaper74, unicodeEscaper77 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator79 = unicodeEscaper62.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator80 = unicodeEscaper57.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper82 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper85 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer87 = null;
boolean boolean88 = unicodeEscaper85.translate((int) (short) 0, writer87);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper89 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper91 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray92 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper85, unicodeEscaper89, unicodeEscaper91 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator93 = unicodeEscaper82.with(charSequenceTranslatorArray92);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator94 = charSequenceTranslator80.with(charSequenceTranslatorArray92);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator95 = unicodeEscaper35.with(charSequenceTranslatorArray92);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator96 = unicodeEscaper32.with(charSequenceTranslatorArray92);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator97 = unicodeEscaper8.with(charSequenceTranslatorArray92);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator98 = unicodeEscaper5.with(charSequenceTranslatorArray92);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator99 = unicodeEscaper2.with(charSequenceTranslatorArray92);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertEquals("'" + str13 + "' != '" + "hi!" + "'", str13, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertTrue("'" + int20 + "' != '" + 0 + "'", int20 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertNotNull(unicodeEscaper26);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray27);
org.junit.Assert.assertNotNull(charSequenceTranslator28);
org.junit.Assert.assertNotNull(charSequenceTranslator29);
org.junit.Assert.assertNotNull(unicodeEscaper32);
org.junit.Assert.assertNotNull(unicodeEscaper35);
org.junit.Assert.assertEquals("'" + str37 + "' != '" + "hi!" + "'", str37, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper40);
org.junit.Assert.assertTrue("'" + int44 + "' != '" + 0 + "'", int44 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper46);
org.junit.Assert.assertNotNull(unicodeEscaper50);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray51);
org.junit.Assert.assertNotNull(charSequenceTranslator52);
org.junit.Assert.assertEquals("'" + str54 + "' != '" + "" + "'", str54, "");
org.junit.Assert.assertNotNull(unicodeEscaper57);
org.junit.Assert.assertEquals("'" + str59 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str59, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper62);
org.junit.Assert.assertEquals("'" + str64 + "' != '" + "hi!" + "'", str64, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper67);
org.junit.Assert.assertTrue("'" + int71 + "' != '" + 0 + "'", int71 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper73);
org.junit.Assert.assertNotNull(unicodeEscaper77);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray78);
org.junit.Assert.assertNotNull(charSequenceTranslator79);
org.junit.Assert.assertNotNull(charSequenceTranslator80);
org.junit.Assert.assertNotNull(unicodeEscaper82);
org.junit.Assert.assertNotNull(unicodeEscaper85);
org.junit.Assert.assertTrue("'" + boolean88 + "' != '" + false + "'", boolean88 == false);
org.junit.Assert.assertNotNull(unicodeEscaper91);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray92);
org.junit.Assert.assertNotNull(charSequenceTranslator93);
org.junit.Assert.assertNotNull(charSequenceTranslator94);
org.junit.Assert.assertNotNull(charSequenceTranslator95);
org.junit.Assert.assertNotNull(charSequenceTranslator96);
org.junit.Assert.assertNotNull(charSequenceTranslator97);
org.junit.Assert.assertNotNull(charSequenceTranslator98);
org.junit.Assert.assertNotNull(charSequenceTranslator99);
}
@Test
public void test2270() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2270");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) 1);
java.io.Writer writer3 = null;
boolean boolean4 = unicodeEscaper1.translate((int) '#', writer3);
java.io.Writer writer6 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper1.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030", writer6);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertTrue("'" + boolean4 + "' != '" + false + "'", boolean4 == false);
}
@Test
public void test2271() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2271");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(10, (int) (byte) 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) -1, 0);
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "1");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str12 = unicodeEscaper10.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str17 = unicodeEscaper15.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer23 = null;
int int24 = unicodeEscaper20.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer23);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray31 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper20, unicodeEscaper26, unicodeEscaper27, unicodeEscaper30 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator32 = unicodeEscaper15.with(charSequenceTranslatorArray31);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper10.with(charSequenceTranslatorArray31);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer39 = null;
int int40 = unicodeEscaper36.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer39);
java.io.Writer writer42 = null;
boolean boolean43 = unicodeEscaper36.translate((int) (byte) -1, writer42);
java.lang.String str45 = unicodeEscaper36.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper48 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str50 = unicodeEscaper48.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray51 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper36, unicodeEscaper48 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator52 = unicodeEscaper10.with(charSequenceTranslatorArray51);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator53 = unicodeEscaper5.with(charSequenceTranslatorArray51);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator54 = unicodeEscaper2.with(charSequenceTranslatorArray51);
java.io.Writer writer56 = null;
boolean boolean57 = unicodeEscaper2.translate((int) (byte) 100, writer56);
java.io.Writer writer60 = null;
// The following exception was thrown during execution in test generation
try {
int int61 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0030", 10, writer60);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: 10");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "\\u0031" + "'", str7, "\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertEquals("'" + str12 + "' != '" + "hi!" + "'", str12, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertEquals("'" + str17 + "' != '" + "hi!" + "'", str17, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertTrue("'" + int24 + "' != '" + 0 + "'", int24 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper26);
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray31);
org.junit.Assert.assertNotNull(charSequenceTranslator32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
org.junit.Assert.assertNotNull(unicodeEscaper36);
org.junit.Assert.assertTrue("'" + int40 + "' != '" + 0 + "'", int40 == 0);
org.junit.Assert.assertTrue("'" + boolean43 + "' != '" + false + "'", boolean43 == false);
org.junit.Assert.assertEquals("'" + str45 + "' != '" + "0" + "'", str45, "0");
org.junit.Assert.assertNotNull(unicodeEscaper48);
org.junit.Assert.assertEquals("'" + str50 + "' != '" + "hi!" + "'", str50, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray51);
org.junit.Assert.assertNotNull(charSequenceTranslator52);
org.junit.Assert.assertNotNull(charSequenceTranslator53);
org.junit.Assert.assertNotNull(charSequenceTranslator54);
org.junit.Assert.assertTrue("'" + boolean57 + "' != '" + false + "'", boolean57 == false);
}
@Test
public void test2272() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2272");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) -1, 1);
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2273() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2273");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str9 = unicodeEscaper7.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer15 = null;
int int16 = unicodeEscaper12.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer15);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray23 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper12, unicodeEscaper18, unicodeEscaper19, unicodeEscaper22 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator24 = unicodeEscaper7.with(charSequenceTranslatorArray23);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator25 = unicodeEscaper2.with(charSequenceTranslatorArray23);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer32 = null;
boolean boolean33 = unicodeEscaper30.translate((int) (short) 0, writer32);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper34 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray37 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper30, unicodeEscaper34, unicodeEscaper36 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator38 = unicodeEscaper27.with(charSequenceTranslatorArray37);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator39 = charSequenceTranslator25.with(charSequenceTranslatorArray37);
java.lang.String str41 = charSequenceTranslator39.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
java.lang.String str43 = charSequenceTranslator39.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033");
java.io.Writer writer45 = null;
// The following exception was thrown during execution in test generation
try {
charSequenceTranslator39.translate((java.lang.CharSequence) "\\u005Cu\\u0030\\u0030\\u0035\\u0043\\u005Cu\\u0030\\u0030\\u0037\\u0035\\u005Cu\\u0030\\u0030\\u0033\\u0030\\u005Cu\\u0030\\u0030\\u0033\\u0030\\u005Cu\\u0030\\u0030\\u0033\\u0033\\u005Cu\\u0030\\u0030\\u0033\\u0030", writer45);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str4, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertEquals("'" + str9 + "' != '" + "hi!" + "'", str9, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertTrue("'" + int16 + "' != '" + 0 + "'", int16 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray23);
org.junit.Assert.assertNotNull(charSequenceTranslator24);
org.junit.Assert.assertNotNull(charSequenceTranslator25);
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertTrue("'" + boolean33 + "' != '" + false + "'", boolean33 == false);
org.junit.Assert.assertNotNull(unicodeEscaper36);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray37);
org.junit.Assert.assertNotNull(charSequenceTranslator38);
org.junit.Assert.assertNotNull(charSequenceTranslator39);
org.junit.Assert.assertEquals("'" + str41 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034" + "'", str41, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
org.junit.Assert.assertEquals("'" + str43 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033" + "'", str43, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033");
}
@Test
public void test2274() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2274");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((-1), (int) (short) 10);
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2275() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2275");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) ' ', 0);
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031", 1, writer5);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
}
@Test
public void test2276() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2276");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 0, (int) (byte) -1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) -1, 0);
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "1");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str12 = unicodeEscaper10.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str17 = unicodeEscaper15.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer23 = null;
int int24 = unicodeEscaper20.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer23);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray31 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper20, unicodeEscaper26, unicodeEscaper27, unicodeEscaper30 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator32 = unicodeEscaper15.with(charSequenceTranslatorArray31);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper10.with(charSequenceTranslatorArray31);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer39 = null;
int int40 = unicodeEscaper36.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer39);
java.io.Writer writer42 = null;
boolean boolean43 = unicodeEscaper36.translate((int) (byte) -1, writer42);
java.lang.String str45 = unicodeEscaper36.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper48 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str50 = unicodeEscaper48.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray51 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper36, unicodeEscaper48 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator52 = unicodeEscaper10.with(charSequenceTranslatorArray51);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator53 = unicodeEscaper5.with(charSequenceTranslatorArray51);
java.lang.String str55 = unicodeEscaper5.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0036\\u0038\\u005C\\u0075\\u0030\\u0030\\u0036\\u0039\\u005C\\u0075\\u0030\\u0030\\u0032\\u0031");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper58 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) 'a', (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper61 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str63 = unicodeEscaper61.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper66 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer69 = null;
int int70 = unicodeEscaper66.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer69);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper72 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper73 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper76 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray77 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper66, unicodeEscaper72, unicodeEscaper73, unicodeEscaper76 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator78 = unicodeEscaper61.with(charSequenceTranslatorArray77);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator79 = unicodeEscaper58.with(charSequenceTranslatorArray77);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator80 = unicodeEscaper5.with(charSequenceTranslatorArray77);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator81 = unicodeEscaper2.with(charSequenceTranslatorArray77);
java.io.Writer writer83 = null;
boolean boolean84 = unicodeEscaper2.translate((int) (short) 10, writer83);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "\\u0031" + "'", str7, "\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertEquals("'" + str12 + "' != '" + "hi!" + "'", str12, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertEquals("'" + str17 + "' != '" + "hi!" + "'", str17, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertTrue("'" + int24 + "' != '" + 0 + "'", int24 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper26);
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray31);
org.junit.Assert.assertNotNull(charSequenceTranslator32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
org.junit.Assert.assertNotNull(unicodeEscaper36);
org.junit.Assert.assertTrue("'" + int40 + "' != '" + 0 + "'", int40 == 0);
org.junit.Assert.assertTrue("'" + boolean43 + "' != '" + false + "'", boolean43 == false);
org.junit.Assert.assertEquals("'" + str45 + "' != '" + "0" + "'", str45, "0");
org.junit.Assert.assertNotNull(unicodeEscaper48);
org.junit.Assert.assertEquals("'" + str50 + "' != '" + "hi!" + "'", str50, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray51);
org.junit.Assert.assertNotNull(charSequenceTranslator52);
org.junit.Assert.assertNotNull(charSequenceTranslator53);
org.junit.Assert.assertEquals("'" + str55 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0038\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0039\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031" + "'", str55, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0038\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0039\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper58);
org.junit.Assert.assertNotNull(unicodeEscaper61);
org.junit.Assert.assertEquals("'" + str63 + "' != '" + "hi!" + "'", str63, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper66);
org.junit.Assert.assertTrue("'" + int70 + "' != '" + 0 + "'", int70 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper72);
org.junit.Assert.assertNotNull(unicodeEscaper76);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray77);
org.junit.Assert.assertNotNull(charSequenceTranslator78);
org.junit.Assert.assertNotNull(charSequenceTranslator79);
org.junit.Assert.assertNotNull(charSequenceTranslator80);
org.junit.Assert.assertNotNull(charSequenceTranslator81);
org.junit.Assert.assertTrue("'" + boolean84 + "' != '" + false + "'", boolean84 == false);
}
@Test
public void test2277() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2277");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\\\u007500750068\\\\\\u007500750069\\\\\\u007500750021");
java.io.Writer writer7 = null;
int int8 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0046\\u0046\\u0046\\u0046\\u0046\\u0046\\u0046\\u0046", 1, writer7);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\\\\\u007500750068\\\\\\u007500750069\\\\\\u007500750021" + "'", str4, "\\\\\\u007500750068\\\\\\u007500750069\\\\\\u007500750021");
org.junit.Assert.assertTrue("'" + int8 + "' != '" + 0 + "'", int8 == 0);
}
@Test
public void test2278() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2278");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(10, 1);
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030", (int) (byte) 1, writer5);
java.lang.String str8 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
org.junit.Assert.assertEquals("'" + str8 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034" + "'", str8, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
}
@Test
public void test2279() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2279");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, 1);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "64");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) 'a', (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str12 = unicodeEscaper10.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer18 = null;
int int19 = unicodeEscaper15.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer18);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray26 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper15, unicodeEscaper21, unicodeEscaper22, unicodeEscaper25 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator27 = unicodeEscaper10.with(charSequenceTranslatorArray26);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator28 = unicodeEscaper7.with(charSequenceTranslatorArray26);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator29 = unicodeEscaper2.with(charSequenceTranslatorArray26);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) 0);
java.io.Writer writer33 = null;
boolean boolean34 = unicodeEscaper31.translate(1, writer33);
java.io.Writer writer36 = null;
boolean boolean37 = unicodeEscaper31.translate(0, writer36);
java.io.Writer writer39 = null;
boolean boolean40 = unicodeEscaper31.translate((int) 'a', writer39);
java.lang.String str42 = unicodeEscaper31.translate((java.lang.CharSequence) "64");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper45 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer47 = null;
boolean boolean48 = unicodeEscaper45.translate((int) (short) 0, writer47);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper51 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str53 = unicodeEscaper51.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper56 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str58 = unicodeEscaper56.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper61 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer64 = null;
int int65 = unicodeEscaper61.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer64);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper67 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper68 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper71 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray72 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper61, unicodeEscaper67, unicodeEscaper68, unicodeEscaper71 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator73 = unicodeEscaper56.with(charSequenceTranslatorArray72);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator74 = unicodeEscaper51.with(charSequenceTranslatorArray72);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator75 = unicodeEscaper45.with(charSequenceTranslatorArray72);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator76 = unicodeEscaper31.with(charSequenceTranslatorArray72);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator77 = unicodeEscaper2.with(charSequenceTranslatorArray72);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "64" + "'", str4, "64");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertEquals("'" + str12 + "' != '" + "hi!" + "'", str12, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertTrue("'" + int19 + "' != '" + 0 + "'", int19 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray26);
org.junit.Assert.assertNotNull(charSequenceTranslator27);
org.junit.Assert.assertNotNull(charSequenceTranslator28);
org.junit.Assert.assertNotNull(charSequenceTranslator29);
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertTrue("'" + boolean34 + "' != '" + false + "'", boolean34 == false);
org.junit.Assert.assertTrue("'" + boolean37 + "' != '" + false + "'", boolean37 == false);
org.junit.Assert.assertTrue("'" + boolean40 + "' != '" + false + "'", boolean40 == false);
org.junit.Assert.assertEquals("'" + str42 + "' != '" + "64" + "'", str42, "64");
org.junit.Assert.assertNotNull(unicodeEscaper45);
org.junit.Assert.assertTrue("'" + boolean48 + "' != '" + false + "'", boolean48 == false);
org.junit.Assert.assertNotNull(unicodeEscaper51);
org.junit.Assert.assertEquals("'" + str53 + "' != '" + "hi!" + "'", str53, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper56);
org.junit.Assert.assertEquals("'" + str58 + "' != '" + "hi!" + "'", str58, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper61);
org.junit.Assert.assertTrue("'" + int65 + "' != '" + 0 + "'", int65 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper67);
org.junit.Assert.assertNotNull(unicodeEscaper71);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray72);
org.junit.Assert.assertNotNull(charSequenceTranslator73);
org.junit.Assert.assertNotNull(charSequenceTranslator74);
org.junit.Assert.assertNotNull(charSequenceTranslator75);
org.junit.Assert.assertNotNull(charSequenceTranslator76);
org.junit.Assert.assertNotNull(charSequenceTranslator77);
}
@Test
public void test2280() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2280");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) ' ', (int) ' ');
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (short) 0, writer4);
java.lang.String str7 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper9 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 100, (int) (short) 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above(100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str22 = unicodeEscaper20.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str27 = unicodeEscaper25.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer33 = null;
int int34 = unicodeEscaper30.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer33);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray41 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper30, unicodeEscaper36, unicodeEscaper37, unicodeEscaper40 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator42 = unicodeEscaper25.with(charSequenceTranslatorArray41);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator43 = unicodeEscaper20.with(charSequenceTranslatorArray41);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper17.with(charSequenceTranslatorArray41);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper47 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str49 = unicodeEscaper47.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper52 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer55 = null;
int int56 = unicodeEscaper52.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer55);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper58 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper59 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper62 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray63 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper52, unicodeEscaper58, unicodeEscaper59, unicodeEscaper62 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator64 = unicodeEscaper47.with(charSequenceTranslatorArray63);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper67 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str69 = unicodeEscaper67.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper72 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str74 = unicodeEscaper72.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper77 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer80 = null;
int int81 = unicodeEscaper77.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer80);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper83 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper84 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper87 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray88 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper77, unicodeEscaper83, unicodeEscaper84, unicodeEscaper87 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator89 = unicodeEscaper72.with(charSequenceTranslatorArray88);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator90 = unicodeEscaper67.with(charSequenceTranslatorArray88);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator91 = charSequenceTranslator64.with(charSequenceTranslatorArray88);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator92 = unicodeEscaper17.with(charSequenceTranslatorArray88);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator93 = unicodeEscaper14.with(charSequenceTranslatorArray88);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator94 = unicodeEscaper12.with(charSequenceTranslatorArray88);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator95 = unicodeEscaper9.with(charSequenceTranslatorArray88);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator96 = unicodeEscaper2.with(charSequenceTranslatorArray88);
java.lang.CharSequence charSequence97 = null;
java.io.Writer writer98 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate(charSequence97, writer98);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031" + "'", str7, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper9);
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertNotNull(unicodeEscaper14);
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertEquals("'" + str22 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str22, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertEquals("'" + str27 + "' != '" + "hi!" + "'", str27, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertTrue("'" + int34 + "' != '" + 0 + "'", int34 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper36);
org.junit.Assert.assertNotNull(unicodeEscaper40);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray41);
org.junit.Assert.assertNotNull(charSequenceTranslator42);
org.junit.Assert.assertNotNull(charSequenceTranslator43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertNotNull(unicodeEscaper47);
org.junit.Assert.assertEquals("'" + str49 + "' != '" + "hi!" + "'", str49, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper52);
org.junit.Assert.assertTrue("'" + int56 + "' != '" + 0 + "'", int56 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper58);
org.junit.Assert.assertNotNull(unicodeEscaper62);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray63);
org.junit.Assert.assertNotNull(charSequenceTranslator64);
org.junit.Assert.assertNotNull(unicodeEscaper67);
org.junit.Assert.assertEquals("'" + str69 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str69, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper72);
org.junit.Assert.assertEquals("'" + str74 + "' != '" + "hi!" + "'", str74, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper77);
org.junit.Assert.assertTrue("'" + int81 + "' != '" + 0 + "'", int81 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper83);
org.junit.Assert.assertNotNull(unicodeEscaper87);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray88);
org.junit.Assert.assertNotNull(charSequenceTranslator89);
org.junit.Assert.assertNotNull(charSequenceTranslator90);
org.junit.Assert.assertNotNull(charSequenceTranslator91);
org.junit.Assert.assertNotNull(charSequenceTranslator92);
org.junit.Assert.assertNotNull(charSequenceTranslator93);
org.junit.Assert.assertNotNull(charSequenceTranslator94);
org.junit.Assert.assertNotNull(charSequenceTranslator95);
org.junit.Assert.assertNotNull(charSequenceTranslator96);
}
@Test
public void test2281() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2281");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, (int) 'a');
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, 1);
java.lang.String str9 = unicodeEscaper7.translate((java.lang.CharSequence) "FFFFFFFF");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str14 = unicodeEscaper12.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str19 = unicodeEscaper17.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer25 = null;
int int26 = unicodeEscaper22.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer25);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper29 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray33 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper22, unicodeEscaper28, unicodeEscaper29, unicodeEscaper32 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator34 = unicodeEscaper17.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator35 = unicodeEscaper12.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator36 = unicodeEscaper7.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator37 = unicodeEscaper2.with(charSequenceTranslatorArray33);
java.lang.String str39 = charSequenceTranslator37.translate((java.lang.CharSequence) "1");
java.io.Writer writer41 = null;
// The following exception was thrown during execution in test generation
try {
charSequenceTranslator37.translate((java.lang.CharSequence) "\\\\u00750068\\\\u00750069\\\\u00750021", writer41);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "0" + "'", str4, "0");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertEquals("'" + str9 + "' != '" + "FFFFFFFF" + "'", str9, "FFFFFFFF");
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertEquals("'" + str14 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str14, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertEquals("'" + str19 + "' != '" + "hi!" + "'", str19, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertTrue("'" + int26 + "' != '" + 0 + "'", int26 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(unicodeEscaper32);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray33);
org.junit.Assert.assertNotNull(charSequenceTranslator34);
org.junit.Assert.assertNotNull(charSequenceTranslator35);
org.junit.Assert.assertNotNull(charSequenceTranslator36);
org.junit.Assert.assertNotNull(charSequenceTranslator37);
org.junit.Assert.assertEquals("'" + str39 + "' != '" + "\\u0031" + "'", str39, "\\u0031");
}
@Test
public void test2282() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2282");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) -1, (int) 'a');
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (short) 0, writer4);
java.lang.String str7 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750036\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750034" + "'", str7, "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750036\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750034");
}
@Test
public void test2283() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2283");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (int) ' ');
java.io.Writer writer5 = null;
// The following exception was thrown during execution in test generation
try {
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "", (int) (byte) -1, writer5);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: -1");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2284() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2284");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, (int) (short) 10);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "0");
java.io.Writer writer6 = null;
boolean boolean7 = unicodeEscaper2.translate(0, writer6);
java.lang.Class<?> wildcardClass8 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u0030" + "'", str4, "\\u0030");
org.junit.Assert.assertTrue("'" + boolean7 + "' != '" + false + "'", boolean7 == false);
org.junit.Assert.assertNotNull(wildcardClass8);
}
@Test
public void test2285() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2285");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "20");
java.io.Writer writer7 = null;
int int8 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0033\\u0034", (int) (byte) 10, writer7);
java.io.Writer writer10 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "20", writer10);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "20" + "'", str4, "20");
org.junit.Assert.assertTrue("'" + int8 + "' != '" + 0 + "'", int8 == 0);
}
@Test
public void test2286() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2286");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper4 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 1, (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str9 = unicodeEscaper7.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str14 = unicodeEscaper12.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer20 = null;
int int21 = unicodeEscaper17.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer20);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper23 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray28 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper17, unicodeEscaper23, unicodeEscaper24, unicodeEscaper27 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator29 = unicodeEscaper12.with(charSequenceTranslatorArray28);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator30 = unicodeEscaper7.with(charSequenceTranslatorArray28);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper4.with(charSequenceTranslatorArray28);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator32 = unicodeEscaper1.with(charSequenceTranslatorArray28);
java.io.Writer writer34 = null;
// The following exception was thrown during execution in test generation
try {
charSequenceTranslator32.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030", writer34);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertNotNull(unicodeEscaper4);
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertEquals("'" + str9 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str9, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertEquals("'" + str14 + "' != '" + "hi!" + "'", str14, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertTrue("'" + int21 + "' != '" + 0 + "'", int21 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper23);
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray28);
org.junit.Assert.assertNotNull(charSequenceTranslator29);
org.junit.Assert.assertNotNull(charSequenceTranslator30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
org.junit.Assert.assertNotNull(charSequenceTranslator32);
}
@Test
public void test2287() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2287");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 100, (int) (byte) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030" + "'", str4, "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030");
}
@Test
public void test2288() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2288");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(1, (-1));
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (short) 10, writer4);
java.lang.String str7 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0036\\u005Cu\\u0030\\u0030\\u0033\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "\\u0036\\u005Cu\\u0030\\u0030\\u0033\\u0031" + "'", str7, "\\u0036\\u005Cu\\u0030\\u0030\\u0033\\u0031");
}
@Test
public void test2289() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2289");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 10, (int) (short) -1);
java.lang.Class<?> wildcardClass3 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(wildcardClass3);
}
@Test
public void test2290() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2290");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(10, (int) '4');
java.io.Writer writer4 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean5 = unicodeEscaper2.translate((int) (byte) 0, writer4);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2291() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2291");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(10, (int) (short) 10);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (byte) 1, writer4);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
}
@Test
public void test2292() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2292");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0032\\u0030");
java.io.Writer writer6 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean7 = unicodeEscaper2.translate((int) (short) 0, writer6);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u0032\\u0030" + "'", str4, "\\u0032\\u0030");
}
@Test
public void test2293() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2293");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(10, 1);
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030", (int) (byte) 1, writer5);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper9 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str11 = unicodeEscaper9.translate((java.lang.CharSequence) "hi!");
java.io.Writer writer13 = null;
boolean boolean14 = unicodeEscaper9.translate(0, writer13);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str24 = unicodeEscaper22.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str29 = unicodeEscaper27.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer35 = null;
int int36 = unicodeEscaper32.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer35);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper38 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper39 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper42 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray43 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper32, unicodeEscaper38, unicodeEscaper39, unicodeEscaper42 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper27.with(charSequenceTranslatorArray43);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator45 = unicodeEscaper22.with(charSequenceTranslatorArray43);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator46 = unicodeEscaper19.with(charSequenceTranslatorArray43);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator47 = unicodeEscaper17.with(charSequenceTranslatorArray43);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator48 = unicodeEscaper9.with(charSequenceTranslatorArray43);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper51 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 0, (-1));
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper53 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper56 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer58 = null;
boolean boolean59 = unicodeEscaper56.translate((int) (short) 0, writer58);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper60 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper62 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray63 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper56, unicodeEscaper60, unicodeEscaper62 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator64 = unicodeEscaper53.with(charSequenceTranslatorArray63);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator65 = unicodeEscaper51.with(charSequenceTranslatorArray63);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator66 = charSequenceTranslator48.with(charSequenceTranslatorArray63);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator67 = unicodeEscaper2.with(charSequenceTranslatorArray63);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper9);
org.junit.Assert.assertEquals("'" + str11 + "' != '" + "hi!" + "'", str11, "hi!");
org.junit.Assert.assertTrue("'" + boolean14 + "' != '" + false + "'", boolean14 == false);
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertNotNull(unicodeEscaper19);
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertEquals("'" + str24 + "' != '" + "hi!" + "'", str24, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertEquals("'" + str29 + "' != '" + "hi!" + "'", str29, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper32);
org.junit.Assert.assertTrue("'" + int36 + "' != '" + 0 + "'", int36 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper38);
org.junit.Assert.assertNotNull(unicodeEscaper42);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertNotNull(charSequenceTranslator45);
org.junit.Assert.assertNotNull(charSequenceTranslator46);
org.junit.Assert.assertNotNull(charSequenceTranslator47);
org.junit.Assert.assertNotNull(charSequenceTranslator48);
org.junit.Assert.assertNotNull(unicodeEscaper51);
org.junit.Assert.assertNotNull(unicodeEscaper53);
org.junit.Assert.assertNotNull(unicodeEscaper56);
org.junit.Assert.assertTrue("'" + boolean59 + "' != '" + false + "'", boolean59 == false);
org.junit.Assert.assertNotNull(unicodeEscaper62);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray63);
org.junit.Assert.assertNotNull(charSequenceTranslator64);
org.junit.Assert.assertNotNull(charSequenceTranslator65);
org.junit.Assert.assertNotNull(charSequenceTranslator66);
org.junit.Assert.assertNotNull(charSequenceTranslator67);
}
@Test
public void test2294() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2294");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(1, (int) (short) 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str12 = unicodeEscaper10.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer18 = null;
int int19 = unicodeEscaper15.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer18);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray26 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper15, unicodeEscaper21, unicodeEscaper22, unicodeEscaper25 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator27 = unicodeEscaper10.with(charSequenceTranslatorArray26);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator28 = unicodeEscaper5.with(charSequenceTranslatorArray26);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator29 = unicodeEscaper2.with(charSequenceTranslatorArray26);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "hi!" + "'", str7, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertEquals("'" + str12 + "' != '" + "hi!" + "'", str12, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertTrue("'" + int19 + "' != '" + 0 + "'", int19 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray26);
org.junit.Assert.assertNotNull(charSequenceTranslator27);
org.junit.Assert.assertNotNull(charSequenceTranslator28);
org.junit.Assert.assertNotNull(charSequenceTranslator29);
}
@Test
public void test2295() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2295");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 100, (int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper4 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str9 = unicodeEscaper7.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str14 = unicodeEscaper12.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer20 = null;
int int21 = unicodeEscaper17.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer20);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper23 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray28 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper17, unicodeEscaper23, unicodeEscaper24, unicodeEscaper27 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator29 = unicodeEscaper12.with(charSequenceTranslatorArray28);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator30 = unicodeEscaper7.with(charSequenceTranslatorArray28);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper4.with(charSequenceTranslatorArray28);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper34 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(10, 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper39 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray40 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper4, unicodeEscaper34, unicodeEscaper37, unicodeEscaper39 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator41 = unicodeEscaper2.with(charSequenceTranslatorArray40);
java.lang.CharSequence charSequence42 = null;
java.lang.String str43 = unicodeEscaper2.translate(charSequence42);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper4);
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertEquals("'" + str9 + "' != '" + "hi!" + "'", str9, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertEquals("'" + str14 + "' != '" + "hi!" + "'", str14, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertTrue("'" + int21 + "' != '" + 0 + "'", int21 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper23);
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray28);
org.junit.Assert.assertNotNull(charSequenceTranslator29);
org.junit.Assert.assertNotNull(charSequenceTranslator30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
org.junit.Assert.assertNotNull(unicodeEscaper34);
org.junit.Assert.assertNotNull(unicodeEscaper37);
org.junit.Assert.assertNotNull(unicodeEscaper39);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray40);
org.junit.Assert.assertNotNull(charSequenceTranslator41);
org.junit.Assert.assertNull(str43);
}
@Test
public void test2296() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2296");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (short) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper4 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 100, (int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper6 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper9 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str11 = unicodeEscaper9.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str16 = unicodeEscaper14.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer22 = null;
int int23 = unicodeEscaper19.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer22);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper29 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray30 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper19, unicodeEscaper25, unicodeEscaper26, unicodeEscaper29 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper14.with(charSequenceTranslatorArray30);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator32 = unicodeEscaper9.with(charSequenceTranslatorArray30);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper6.with(charSequenceTranslatorArray30);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(10, 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper39 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray42 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper6, unicodeEscaper36, unicodeEscaper39, unicodeEscaper41 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator43 = unicodeEscaper4.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper1.with(charSequenceTranslatorArray42);
java.lang.String str46 = charSequenceTranslator44.translate((java.lang.CharSequence) "20");
java.lang.Class<?> wildcardClass47 = charSequenceTranslator44.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertNotNull(unicodeEscaper4);
org.junit.Assert.assertNotNull(unicodeEscaper6);
org.junit.Assert.assertNotNull(unicodeEscaper9);
org.junit.Assert.assertEquals("'" + str11 + "' != '" + "hi!" + "'", str11, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper14);
org.junit.Assert.assertEquals("'" + str16 + "' != '" + "hi!" + "'", str16, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper19);
org.junit.Assert.assertTrue("'" + int23 + "' != '" + 0 + "'", int23 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertNotNull(unicodeEscaper29);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
org.junit.Assert.assertNotNull(charSequenceTranslator32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
org.junit.Assert.assertNotNull(unicodeEscaper36);
org.junit.Assert.assertNotNull(unicodeEscaper39);
org.junit.Assert.assertNotNull(unicodeEscaper41);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray42);
org.junit.Assert.assertNotNull(charSequenceTranslator43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertEquals("'" + str46 + "' != '" + "\\u0032\\u0030" + "'", str46, "\\u0032\\u0030");
org.junit.Assert.assertNotNull(wildcardClass47);
}
@Test
public void test2297() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2297");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, 0);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (short) 0, writer4);
java.lang.CharSequence charSequence6 = null;
java.lang.String str7 = unicodeEscaper2.translate(charSequence6);
java.io.Writer writer10 = null;
// The following exception was thrown during execution in test generation
try {
int int11 = unicodeEscaper2.translate((java.lang.CharSequence) "FFFFFFFF", 100, writer10);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: 100");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertNull(str7);
}
@Test
public void test2298() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2298");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper4 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str6 = unicodeEscaper4.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper9 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str11 = unicodeEscaper9.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer17 = null;
int int18 = unicodeEscaper14.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer17);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray25 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper14, unicodeEscaper20, unicodeEscaper21, unicodeEscaper24 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator26 = unicodeEscaper9.with(charSequenceTranslatorArray25);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator27 = unicodeEscaper4.with(charSequenceTranslatorArray25);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator28 = unicodeEscaper1.with(charSequenceTranslatorArray25);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer33 = null;
boolean boolean34 = unicodeEscaper31.translate((int) (byte) 100, writer33);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str42 = unicodeEscaper40.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper45 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer48 = null;
int int49 = unicodeEscaper45.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer48);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper51 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper52 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper55 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray56 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper45, unicodeEscaper51, unicodeEscaper52, unicodeEscaper55 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator57 = unicodeEscaper40.with(charSequenceTranslatorArray56);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator58 = unicodeEscaper37.with(charSequenceTranslatorArray56);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator59 = unicodeEscaper31.with(charSequenceTranslatorArray56);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator60 = charSequenceTranslator28.with(charSequenceTranslatorArray56);
java.io.Writer writer62 = null;
// The following exception was thrown during execution in test generation
try {
charSequenceTranslator60.translate((java.lang.CharSequence) "\\\\\\u007500750068\\\\\\u007500750069\\\\\\u007500750021", writer62);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertNotNull(unicodeEscaper4);
org.junit.Assert.assertEquals("'" + str6 + "' != '" + "hi!" + "'", str6, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper9);
org.junit.Assert.assertEquals("'" + str11 + "' != '" + "hi!" + "'", str11, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper14);
org.junit.Assert.assertTrue("'" + int18 + "' != '" + 0 + "'", int18 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray25);
org.junit.Assert.assertNotNull(charSequenceTranslator26);
org.junit.Assert.assertNotNull(charSequenceTranslator27);
org.junit.Assert.assertNotNull(charSequenceTranslator28);
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertTrue("'" + boolean34 + "' != '" + false + "'", boolean34 == false);
org.junit.Assert.assertNotNull(unicodeEscaper37);
org.junit.Assert.assertNotNull(unicodeEscaper40);
org.junit.Assert.assertEquals("'" + str42 + "' != '" + "hi!" + "'", str42, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper45);
org.junit.Assert.assertTrue("'" + int49 + "' != '" + 0 + "'", int49 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper51);
org.junit.Assert.assertNotNull(unicodeEscaper55);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray56);
org.junit.Assert.assertNotNull(charSequenceTranslator57);
org.junit.Assert.assertNotNull(charSequenceTranslator58);
org.junit.Assert.assertNotNull(charSequenceTranslator59);
org.junit.Assert.assertNotNull(charSequenceTranslator60);
}
@Test
public void test2299() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2299");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) -1);
java.io.Writer writer3 = null;
boolean boolean4 = unicodeEscaper1.translate((int) '#', writer3);
java.io.Writer writer6 = null;
boolean boolean7 = unicodeEscaper1.translate(100, writer6);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper9 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (short) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) -1, (int) (short) -1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str17 = unicodeEscaper15.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str22 = unicodeEscaper20.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer28 = null;
int int29 = unicodeEscaper25.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer28);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray36 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper25, unicodeEscaper31, unicodeEscaper32, unicodeEscaper35 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator37 = unicodeEscaper20.with(charSequenceTranslatorArray36);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator38 = unicodeEscaper15.with(charSequenceTranslatorArray36);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer44 = null;
int int45 = unicodeEscaper41.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer44);
java.io.Writer writer47 = null;
boolean boolean48 = unicodeEscaper41.translate((int) (byte) -1, writer47);
java.lang.String str50 = unicodeEscaper41.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper53 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str55 = unicodeEscaper53.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray56 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper41, unicodeEscaper53 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator57 = unicodeEscaper15.with(charSequenceTranslatorArray56);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator58 = unicodeEscaper12.with(charSequenceTranslatorArray56);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator59 = unicodeEscaper9.with(charSequenceTranslatorArray56);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator60 = unicodeEscaper1.with(charSequenceTranslatorArray56);
java.lang.Class<?> wildcardClass61 = unicodeEscaper1.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertTrue("'" + boolean4 + "' != '" + false + "'", boolean4 == false);
org.junit.Assert.assertTrue("'" + boolean7 + "' != '" + false + "'", boolean7 == false);
org.junit.Assert.assertNotNull(unicodeEscaper9);
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertEquals("'" + str17 + "' != '" + "hi!" + "'", str17, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertEquals("'" + str22 + "' != '" + "hi!" + "'", str22, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertTrue("'" + int29 + "' != '" + 0 + "'", int29 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertNotNull(unicodeEscaper35);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray36);
org.junit.Assert.assertNotNull(charSequenceTranslator37);
org.junit.Assert.assertNotNull(charSequenceTranslator38);
org.junit.Assert.assertNotNull(unicodeEscaper41);
org.junit.Assert.assertTrue("'" + int45 + "' != '" + 0 + "'", int45 == 0);
org.junit.Assert.assertTrue("'" + boolean48 + "' != '" + false + "'", boolean48 == false);
org.junit.Assert.assertEquals("'" + str50 + "' != '" + "0" + "'", str50, "0");
org.junit.Assert.assertNotNull(unicodeEscaper53);
org.junit.Assert.assertEquals("'" + str55 + "' != '" + "hi!" + "'", str55, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray56);
org.junit.Assert.assertNotNull(charSequenceTranslator57);
org.junit.Assert.assertNotNull(charSequenceTranslator58);
org.junit.Assert.assertNotNull(charSequenceTranslator59);
org.junit.Assert.assertNotNull(charSequenceTranslator60);
org.junit.Assert.assertNotNull(wildcardClass61);
}
@Test
public void test2300() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2300");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (short) 0, writer4);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str10 = unicodeEscaper8.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str15 = unicodeEscaper13.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer21 = null;
int int22 = unicodeEscaper18.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer21);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray29 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper18, unicodeEscaper24, unicodeEscaper25, unicodeEscaper28 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator30 = unicodeEscaper13.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper8.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator32 = unicodeEscaper2.with(charSequenceTranslatorArray29);
java.lang.String str34 = charSequenceTranslator32.translate((java.lang.CharSequence) "0");
java.io.Writer writer36 = null;
// The following exception was thrown during execution in test generation
try {
charSequenceTranslator32.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034", writer36);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertEquals("'" + str10 + "' != '" + "hi!" + "'", str10, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertEquals("'" + str15 + "' != '" + "hi!" + "'", str15, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertTrue("'" + int22 + "' != '" + 0 + "'", int22 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray29);
org.junit.Assert.assertNotNull(charSequenceTranslator30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
org.junit.Assert.assertNotNull(charSequenceTranslator32);
org.junit.Assert.assertEquals("'" + str34 + "' != '" + "\\u0030" + "'", str34, "\\u0030");
}
@Test
public void test2301() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2301");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 0, (int) (short) 10);
java.lang.Class<?> wildcardClass3 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(wildcardClass3);
}
@Test
public void test2302() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2302");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, 1);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
java.io.Writer writer7 = null;
// The following exception was thrown during execution in test generation
try {
int int8 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0068\\u0069\\u0021", (int) ' ', writer7);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: 32");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030" + "'", str4, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
}
@Test
public void test2303() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2303");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(1, (int) (short) -1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer13 = null;
int int14 = unicodeEscaper10.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer13);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray21 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper10, unicodeEscaper16, unicodeEscaper17, unicodeEscaper20 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator22 = unicodeEscaper5.with(charSequenceTranslatorArray21);
java.lang.String str24 = unicodeEscaper5.translate((java.lang.CharSequence) "");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str29 = unicodeEscaper27.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str34 = unicodeEscaper32.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer40 = null;
int int41 = unicodeEscaper37.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer40);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper43 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper44 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper47 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray48 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper37, unicodeEscaper43, unicodeEscaper44, unicodeEscaper47 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator49 = unicodeEscaper32.with(charSequenceTranslatorArray48);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator50 = unicodeEscaper27.with(charSequenceTranslatorArray48);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper52 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper55 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer57 = null;
boolean boolean58 = unicodeEscaper55.translate((int) (short) 0, writer57);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper59 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper61 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray62 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper55, unicodeEscaper59, unicodeEscaper61 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator63 = unicodeEscaper52.with(charSequenceTranslatorArray62);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator64 = charSequenceTranslator50.with(charSequenceTranslatorArray62);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator65 = unicodeEscaper5.with(charSequenceTranslatorArray62);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator66 = unicodeEscaper2.with(charSequenceTranslatorArray62);
java.lang.CharSequence charSequence67 = null;
java.lang.String str68 = unicodeEscaper2.translate(charSequence67);
java.lang.Class<?> wildcardClass69 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "hi!" + "'", str7, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertTrue("'" + int14 + "' != '" + 0 + "'", int14 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray21);
org.junit.Assert.assertNotNull(charSequenceTranslator22);
org.junit.Assert.assertEquals("'" + str24 + "' != '" + "" + "'", str24, "");
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertEquals("'" + str29 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str29, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper32);
org.junit.Assert.assertEquals("'" + str34 + "' != '" + "hi!" + "'", str34, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper37);
org.junit.Assert.assertTrue("'" + int41 + "' != '" + 0 + "'", int41 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper43);
org.junit.Assert.assertNotNull(unicodeEscaper47);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray48);
org.junit.Assert.assertNotNull(charSequenceTranslator49);
org.junit.Assert.assertNotNull(charSequenceTranslator50);
org.junit.Assert.assertNotNull(unicodeEscaper52);
org.junit.Assert.assertNotNull(unicodeEscaper55);
org.junit.Assert.assertTrue("'" + boolean58 + "' != '" + false + "'", boolean58 == false);
org.junit.Assert.assertNotNull(unicodeEscaper61);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray62);
org.junit.Assert.assertNotNull(charSequenceTranslator63);
org.junit.Assert.assertNotNull(charSequenceTranslator64);
org.junit.Assert.assertNotNull(charSequenceTranslator65);
org.junit.Assert.assertNotNull(charSequenceTranslator66);
org.junit.Assert.assertNull(str68);
org.junit.Assert.assertNotNull(wildcardClass69);
}
@Test
public void test2304() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2304");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) 0);
java.io.Writer writer3 = null;
boolean boolean4 = unicodeEscaper1.translate(1, writer3);
java.io.Writer writer6 = null;
boolean boolean7 = unicodeEscaper1.translate(0, writer6);
java.io.Writer writer9 = null;
boolean boolean10 = unicodeEscaper1.translate((int) 'a', writer9);
java.lang.String str12 = unicodeEscaper1.translate((java.lang.CharSequence) "64");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer17 = null;
boolean boolean18 = unicodeEscaper15.translate((int) (short) 0, writer17);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str23 = unicodeEscaper21.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str28 = unicodeEscaper26.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer34 = null;
int int35 = unicodeEscaper31.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer34);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper38 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray42 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper31, unicodeEscaper37, unicodeEscaper38, unicodeEscaper41 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator43 = unicodeEscaper26.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper21.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator45 = unicodeEscaper15.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator46 = unicodeEscaper1.with(charSequenceTranslatorArray42);
java.io.Writer writer48 = null;
boolean boolean49 = unicodeEscaper1.translate(0, writer48);
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertTrue("'" + boolean4 + "' != '" + false + "'", boolean4 == false);
org.junit.Assert.assertTrue("'" + boolean7 + "' != '" + false + "'", boolean7 == false);
org.junit.Assert.assertTrue("'" + boolean10 + "' != '" + false + "'", boolean10 == false);
org.junit.Assert.assertEquals("'" + str12 + "' != '" + "64" + "'", str12, "64");
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertTrue("'" + boolean18 + "' != '" + false + "'", boolean18 == false);
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertEquals("'" + str23 + "' != '" + "hi!" + "'", str23, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper26);
org.junit.Assert.assertEquals("'" + str28 + "' != '" + "hi!" + "'", str28, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertTrue("'" + int35 + "' != '" + 0 + "'", int35 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper37);
org.junit.Assert.assertNotNull(unicodeEscaper41);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray42);
org.junit.Assert.assertNotNull(charSequenceTranslator43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertNotNull(charSequenceTranslator45);
org.junit.Assert.assertNotNull(charSequenceTranslator46);
org.junit.Assert.assertTrue("'" + boolean49 + "' != '" + false + "'", boolean49 == false);
}
@Test
public void test2305() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2305");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 0, (int) '#');
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (short) 100, writer4);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray6 = null;
// The following exception was thrown during execution in test generation
try {
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator7 = unicodeEscaper2.with(charSequenceTranslatorArray6);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
}
@Test
public void test2306() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2306");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 1, (int) (short) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper4 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 100);
java.io.Writer writer6 = null;
boolean boolean7 = unicodeEscaper4.translate((int) (short) 0, writer6);
java.lang.String str9 = unicodeEscaper4.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
java.lang.String str11 = unicodeEscaper4.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750031");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) '4', (int) (byte) -1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str22 = unicodeEscaper20.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str27 = unicodeEscaper25.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer33 = null;
int int34 = unicodeEscaper30.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer33);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray41 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper30, unicodeEscaper36, unicodeEscaper37, unicodeEscaper40 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator42 = unicodeEscaper25.with(charSequenceTranslatorArray41);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator43 = unicodeEscaper20.with(charSequenceTranslatorArray41);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper17.with(charSequenceTranslatorArray41);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper46 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper49 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str51 = unicodeEscaper49.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper54 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str56 = unicodeEscaper54.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper59 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer62 = null;
int int63 = unicodeEscaper59.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer62);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper65 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper66 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper69 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray70 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper59, unicodeEscaper65, unicodeEscaper66, unicodeEscaper69 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator71 = unicodeEscaper54.with(charSequenceTranslatorArray70);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator72 = unicodeEscaper49.with(charSequenceTranslatorArray70);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator73 = unicodeEscaper46.with(charSequenceTranslatorArray70);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator74 = charSequenceTranslator44.with(charSequenceTranslatorArray70);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator75 = unicodeEscaper14.with(charSequenceTranslatorArray70);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator76 = unicodeEscaper4.with(charSequenceTranslatorArray70);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator77 = unicodeEscaper2.with(charSequenceTranslatorArray70);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper4);
org.junit.Assert.assertTrue("'" + boolean7 + "' != '" + false + "'", boolean7 == false);
org.junit.Assert.assertEquals("'" + str9 + "' != '" + "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030" + "'", str9, "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030");
org.junit.Assert.assertEquals("'" + str11 + "' != '" + "\\\\\\u00750075005C\\\\\\u007500750075\\\\\\u007500750030\\\\\\u007500750030\\\\\\u007500750033\\\\\\u007500750031" + "'", str11, "\\\\\\u00750075005C\\\\\\u007500750075\\\\\\u007500750030\\\\\\u007500750030\\\\\\u007500750033\\\\\\u007500750031");
org.junit.Assert.assertNotNull(unicodeEscaper14);
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertEquals("'" + str22 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str22, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertEquals("'" + str27 + "' != '" + "hi!" + "'", str27, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertTrue("'" + int34 + "' != '" + 0 + "'", int34 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper36);
org.junit.Assert.assertNotNull(unicodeEscaper40);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray41);
org.junit.Assert.assertNotNull(charSequenceTranslator42);
org.junit.Assert.assertNotNull(charSequenceTranslator43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertNotNull(unicodeEscaper46);
org.junit.Assert.assertNotNull(unicodeEscaper49);
org.junit.Assert.assertEquals("'" + str51 + "' != '" + "hi!" + "'", str51, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper54);
org.junit.Assert.assertEquals("'" + str56 + "' != '" + "hi!" + "'", str56, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper59);
org.junit.Assert.assertTrue("'" + int63 + "' != '" + 0 + "'", int63 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper65);
org.junit.Assert.assertNotNull(unicodeEscaper69);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray70);
org.junit.Assert.assertNotNull(charSequenceTranslator71);
org.junit.Assert.assertNotNull(charSequenceTranslator72);
org.junit.Assert.assertNotNull(charSequenceTranslator73);
org.junit.Assert.assertNotNull(charSequenceTranslator74);
org.junit.Assert.assertNotNull(charSequenceTranslator75);
org.junit.Assert.assertNotNull(charSequenceTranslator76);
org.junit.Assert.assertNotNull(charSequenceTranslator77);
}
@Test
public void test2307() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2307");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) ' ');
java.lang.String str3 = unicodeEscaper1.translate((java.lang.CharSequence) "64");
java.lang.String str5 = unicodeEscaper1.translate((java.lang.CharSequence) "");
java.lang.String str7 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0034\\u0031");
java.io.Writer writer10 = null;
int int11 = unicodeEscaper1.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750036\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750031", 10, writer10);
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertEquals("'" + str3 + "' != '" + "64" + "'", str3, "64");
org.junit.Assert.assertEquals("'" + str5 + "' != '" + "" + "'", str5, "");
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0034\\u0031" + "'", str7, "\\u005C\\u0075\\u0030\\u0030\\u0034\\u0031");
org.junit.Assert.assertTrue("'" + int11 + "' != '" + 0 + "'", int11 == 0);
}
@Test
public void test2308() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2308");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((-1), (int) 'a');
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
java.lang.String str6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005Cu00\\u0035\\u0043\\u005Cu00\\u0037\\u0035\\u005Cu0030\\u005Cu0030\\u005Cu0033\\u005Cu0033\\u005Cu00\\u0035\\u0043\\u005Cu00\\u0037\\u0035\\u005Cu0030\\u005Cu0030\\u005Cu0033\\u005Cu003\\u0034");
java.io.Writer writer8 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\u005Cu\\u0030\\u0030\\u0035\\u0043\\u005Cu\\u0030\\u0030\\u0037\\u0035\\u005Cu\\u0030\\u0030\\u0033\\u0030\\u005Cu\\u0030\\u0030\\u0033\\u0030\\u005Cu\\u0030\\u0030\\u0033\\u0033\\u005Cu\\u0030\\u0030\\u0033\\u0030", writer8);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750037\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030" + "'", str4, "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750037\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030");
org.junit.Assert.assertEquals("'" + str6 + "' != '" + "\\\\u0075005C\\u007500\\\\u00750035\\\\u00750043\\\\u0075005C\\u007500\\\\u00750037\\\\u00750035\\\\u0075005C\\u00750030\\\\u0075005C\\u00750030\\\\u0075005C\\u00750033\\\\u0075005C\\u00750033\\\\u0075005C\\u007500\\\\u00750035\\\\u00750043\\\\u0075005C\\u007500\\\\u00750037\\\\u00750035\\\\u0075005C\\u00750030\\\\u0075005C\\u00750030\\\\u0075005C\\u00750033\\\\u0075005C\\u0075003\\\\u00750034" + "'", str6, "\\\\u0075005C\\u007500\\\\u00750035\\\\u00750043\\\\u0075005C\\u007500\\\\u00750037\\\\u00750035\\\\u0075005C\\u00750030\\\\u0075005C\\u00750030\\\\u0075005C\\u00750033\\\\u0075005C\\u00750033\\\\u0075005C\\u007500\\\\u00750035\\\\u00750043\\\\u0075005C\\u007500\\\\u00750037\\\\u00750035\\\\u0075005C\\u00750030\\\\u0075005C\\u00750030\\\\u0075005C\\u00750033\\\\u0075005C\\u0075003\\\\u00750034");
}
@Test
public void test2309() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2309");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) ' ');
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "61");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "61" + "'", str4, "61");
}
@Test
public void test2310() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2310");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, 1);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
java.lang.String str6 = unicodeEscaper2.translate((java.lang.CharSequence) "64");
java.lang.String str8 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
java.lang.String str10 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
java.io.Writer writer12 = null;
boolean boolean13 = unicodeEscaper2.translate((int) (short) 0, writer12);
java.lang.String str15 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030" + "'", str4, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
org.junit.Assert.assertEquals("'" + str6 + "' != '" + "64" + "'", str6, "64");
org.junit.Assert.assertEquals("'" + str8 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034" + "'", str8, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
org.junit.Assert.assertEquals("'" + str10 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034" + "'", str10, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
org.junit.Assert.assertTrue("'" + boolean13 + "' != '" + false + "'", boolean13 == false);
org.junit.Assert.assertEquals("'" + str15 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str15, "\\u0068\\u0069\\u0021");
}
@Test
public void test2311() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2311");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) (short) 100);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate(10, writer4);
java.io.Writer writer8 = null;
// The following exception was thrown during execution in test generation
try {
int int9 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030", (int) '#', writer8);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
}
@Test
public void test2312() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2312");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) 'a');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper4 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str6 = unicodeEscaper4.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str13 = unicodeEscaper11.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str18 = unicodeEscaper16.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer24 = null;
int int25 = unicodeEscaper21.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer24);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray32 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper21, unicodeEscaper27, unicodeEscaper28, unicodeEscaper31 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper16.with(charSequenceTranslatorArray32);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator34 = unicodeEscaper11.with(charSequenceTranslatorArray32);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator35 = unicodeEscaper8.with(charSequenceTranslatorArray32);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper38 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer40 = null;
boolean boolean41 = unicodeEscaper38.translate((int) (byte) 100, writer40);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper44 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper47 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str49 = unicodeEscaper47.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper52 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer55 = null;
int int56 = unicodeEscaper52.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer55);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper58 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper59 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper62 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray63 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper52, unicodeEscaper58, unicodeEscaper59, unicodeEscaper62 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator64 = unicodeEscaper47.with(charSequenceTranslatorArray63);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator65 = unicodeEscaper44.with(charSequenceTranslatorArray63);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator66 = unicodeEscaper38.with(charSequenceTranslatorArray63);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator67 = charSequenceTranslator35.with(charSequenceTranslatorArray63);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator68 = unicodeEscaper4.with(charSequenceTranslatorArray63);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator69 = unicodeEscaper1.with(charSequenceTranslatorArray63);
java.io.Writer writer71 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper1.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030", writer71);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertNotNull(unicodeEscaper4);
org.junit.Assert.assertEquals("'" + str6 + "' != '" + "hi!" + "'", str6, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertEquals("'" + str13 + "' != '" + "hi!" + "'", str13, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertEquals("'" + str18 + "' != '" + "hi!" + "'", str18, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertTrue("'" + int25 + "' != '" + 0 + "'", int25 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
org.junit.Assert.assertNotNull(charSequenceTranslator34);
org.junit.Assert.assertNotNull(charSequenceTranslator35);
org.junit.Assert.assertNotNull(unicodeEscaper38);
org.junit.Assert.assertTrue("'" + boolean41 + "' != '" + false + "'", boolean41 == false);
org.junit.Assert.assertNotNull(unicodeEscaper44);
org.junit.Assert.assertNotNull(unicodeEscaper47);
org.junit.Assert.assertEquals("'" + str49 + "' != '" + "hi!" + "'", str49, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper52);
org.junit.Assert.assertTrue("'" + int56 + "' != '" + 0 + "'", int56 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper58);
org.junit.Assert.assertNotNull(unicodeEscaper62);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray63);
org.junit.Assert.assertNotNull(charSequenceTranslator64);
org.junit.Assert.assertNotNull(charSequenceTranslator65);
org.junit.Assert.assertNotNull(charSequenceTranslator66);
org.junit.Assert.assertNotNull(charSequenceTranslator67);
org.junit.Assert.assertNotNull(charSequenceTranslator68);
org.junit.Assert.assertNotNull(charSequenceTranslator69);
}
@Test
public void test2313() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2313");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer5);
java.io.Writer writer8 = null;
boolean boolean9 = unicodeEscaper2.translate((-1), writer8);
java.io.Writer writer11 = null;
boolean boolean12 = unicodeEscaper2.translate(10, writer11);
java.io.Writer writer15 = null;
int int16 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u00750032\\\\u00750033", (int) (byte) 1, writer15);
java.lang.String str18 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
org.junit.Assert.assertTrue("'" + boolean9 + "' != '" + false + "'", boolean9 == false);
org.junit.Assert.assertTrue("'" + boolean12 + "' != '" + false + "'", boolean12 == false);
org.junit.Assert.assertTrue("'" + int16 + "' != '" + 0 + "'", int16 == 0);
org.junit.Assert.assertEquals("'" + str18 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036" + "'", str18, "\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036");
}
@Test
public void test2314() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2314");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((-1), (int) (byte) 0);
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2315() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2315");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, 10);
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2316() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2316");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(100, (int) (short) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 1, 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str10 = unicodeEscaper8.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str15 = unicodeEscaper13.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer21 = null;
int int22 = unicodeEscaper18.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer21);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray29 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper18, unicodeEscaper24, unicodeEscaper25, unicodeEscaper28 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator30 = unicodeEscaper13.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper8.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator32 = unicodeEscaper5.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper2.with(charSequenceTranslatorArray29);
java.lang.Class<?> wildcardClass34 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertEquals("'" + str10 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str10, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertEquals("'" + str15 + "' != '" + "hi!" + "'", str15, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertTrue("'" + int22 + "' != '" + 0 + "'", int22 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray29);
org.junit.Assert.assertNotNull(charSequenceTranslator30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
org.junit.Assert.assertNotNull(charSequenceTranslator32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
org.junit.Assert.assertNotNull(wildcardClass34);
}
@Test
public void test2317() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2317");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(1, (-1));
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer12 = null;
boolean boolean13 = unicodeEscaper10.translate((int) (short) 0, writer12);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray17 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper10, unicodeEscaper14, unicodeEscaper16 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator18 = unicodeEscaper7.with(charSequenceTranslatorArray17);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator19 = unicodeEscaper5.with(charSequenceTranslatorArray17);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str27 = unicodeEscaper25.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer33 = null;
int int34 = unicodeEscaper30.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer33);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray41 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper30, unicodeEscaper36, unicodeEscaper37, unicodeEscaper40 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator42 = unicodeEscaper25.with(charSequenceTranslatorArray41);
java.lang.String str44 = unicodeEscaper25.translate((java.lang.CharSequence) "");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper47 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str49 = unicodeEscaper47.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper52 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str54 = unicodeEscaper52.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer60 = null;
int int61 = unicodeEscaper57.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer60);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper63 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper64 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper67 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray68 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper57, unicodeEscaper63, unicodeEscaper64, unicodeEscaper67 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator69 = unicodeEscaper52.with(charSequenceTranslatorArray68);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator70 = unicodeEscaper47.with(charSequenceTranslatorArray68);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper72 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper75 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer77 = null;
boolean boolean78 = unicodeEscaper75.translate((int) (short) 0, writer77);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper79 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper81 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray82 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper75, unicodeEscaper79, unicodeEscaper81 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator83 = unicodeEscaper72.with(charSequenceTranslatorArray82);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator84 = charSequenceTranslator70.with(charSequenceTranslatorArray82);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator85 = unicodeEscaper25.with(charSequenceTranslatorArray82);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator86 = unicodeEscaper22.with(charSequenceTranslatorArray82);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator87 = charSequenceTranslator19.with(charSequenceTranslatorArray82);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator88 = unicodeEscaper2.with(charSequenceTranslatorArray82);
java.lang.Class<?> wildcardClass89 = charSequenceTranslator88.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertTrue("'" + boolean13 + "' != '" + false + "'", boolean13 == false);
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray17);
org.junit.Assert.assertNotNull(charSequenceTranslator18);
org.junit.Assert.assertNotNull(charSequenceTranslator19);
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertEquals("'" + str27 + "' != '" + "hi!" + "'", str27, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertTrue("'" + int34 + "' != '" + 0 + "'", int34 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper36);
org.junit.Assert.assertNotNull(unicodeEscaper40);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray41);
org.junit.Assert.assertNotNull(charSequenceTranslator42);
org.junit.Assert.assertEquals("'" + str44 + "' != '" + "" + "'", str44, "");
org.junit.Assert.assertNotNull(unicodeEscaper47);
org.junit.Assert.assertEquals("'" + str49 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str49, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper52);
org.junit.Assert.assertEquals("'" + str54 + "' != '" + "hi!" + "'", str54, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper57);
org.junit.Assert.assertTrue("'" + int61 + "' != '" + 0 + "'", int61 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper63);
org.junit.Assert.assertNotNull(unicodeEscaper67);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray68);
org.junit.Assert.assertNotNull(charSequenceTranslator69);
org.junit.Assert.assertNotNull(charSequenceTranslator70);
org.junit.Assert.assertNotNull(unicodeEscaper72);
org.junit.Assert.assertNotNull(unicodeEscaper75);
org.junit.Assert.assertTrue("'" + boolean78 + "' != '" + false + "'", boolean78 == false);
org.junit.Assert.assertNotNull(unicodeEscaper81);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray82);
org.junit.Assert.assertNotNull(charSequenceTranslator83);
org.junit.Assert.assertNotNull(charSequenceTranslator84);
org.junit.Assert.assertNotNull(charSequenceTranslator85);
org.junit.Assert.assertNotNull(charSequenceTranslator86);
org.junit.Assert.assertNotNull(charSequenceTranslator87);
org.junit.Assert.assertNotNull(charSequenceTranslator88);
org.junit.Assert.assertNotNull(wildcardClass89);
}
@Test
public void test2318() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2318");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(1, 100);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) '4', writer4);
java.io.Writer writer7 = null;
boolean boolean8 = unicodeEscaper2.translate((int) 'a', writer7);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertTrue("'" + boolean8 + "' != '" + false + "'", boolean8 == false);
}
@Test
public void test2319() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2319");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\\\u007500750068\\\\\\u007500750069\\\\\\u007500750021");
java.io.Writer writer7 = null;
int int8 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031", (int) (byte) 1, writer7);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\\\\\u007500750068\\\\\\u007500750069\\\\\\u007500750021" + "'", str4, "\\\\\\u007500750068\\\\\\u007500750069\\\\\\u007500750021");
org.junit.Assert.assertTrue("'" + int8 + "' != '" + 0 + "'", int8 == 0);
}
@Test
public void test2320() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2320");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(10, (int) (byte) -1);
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2321() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2321");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((-1), (int) (short) -1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(0, (int) ' ');
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "\\\\u00750030");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(10, (int) '4');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) 'a');
java.io.Writer writer14 = null;
boolean boolean15 = unicodeEscaper12.translate((int) '4', writer14);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper23 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str25 = unicodeEscaper23.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str30 = unicodeEscaper28.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper33 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer36 = null;
int int37 = unicodeEscaper33.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer36);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper39 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper43 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray44 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper33, unicodeEscaper39, unicodeEscaper40, unicodeEscaper43 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator45 = unicodeEscaper28.with(charSequenceTranslatorArray44);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator46 = unicodeEscaper23.with(charSequenceTranslatorArray44);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator47 = unicodeEscaper20.with(charSequenceTranslatorArray44);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator48 = unicodeEscaper18.with(charSequenceTranslatorArray44);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator49 = unicodeEscaper12.with(charSequenceTranslatorArray44);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator50 = unicodeEscaper10.with(charSequenceTranslatorArray44);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator51 = unicodeEscaper5.with(charSequenceTranslatorArray44);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator52 = unicodeEscaper2.with(charSequenceTranslatorArray44);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "\\\\u00750030" + "'", str7, "\\\\u00750030");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertTrue("'" + boolean15 + "' != '" + false + "'", boolean15 == false);
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertNotNull(unicodeEscaper23);
org.junit.Assert.assertEquals("'" + str25 + "' != '" + "hi!" + "'", str25, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertEquals("'" + str30 + "' != '" + "hi!" + "'", str30, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper33);
org.junit.Assert.assertTrue("'" + int37 + "' != '" + 0 + "'", int37 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper39);
org.junit.Assert.assertNotNull(unicodeEscaper43);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray44);
org.junit.Assert.assertNotNull(charSequenceTranslator45);
org.junit.Assert.assertNotNull(charSequenceTranslator46);
org.junit.Assert.assertNotNull(charSequenceTranslator47);
org.junit.Assert.assertNotNull(charSequenceTranslator48);
org.junit.Assert.assertNotNull(charSequenceTranslator49);
org.junit.Assert.assertNotNull(charSequenceTranslator50);
org.junit.Assert.assertNotNull(charSequenceTranslator51);
org.junit.Assert.assertNotNull(charSequenceTranslator52);
}
@Test
public void test2322() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2322");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(10, (int) 'a');
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2323() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2323");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 0, (int) (short) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper4 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '#', (int) (short) 1);
java.lang.String str9 = unicodeEscaper7.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
java.lang.String str11 = unicodeEscaper7.translate((java.lang.CharSequence) "\\\\u00750030");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) '#', (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 0, (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str22 = unicodeEscaper20.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str27 = unicodeEscaper25.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer33 = null;
int int34 = unicodeEscaper30.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer33);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray41 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper30, unicodeEscaper36, unicodeEscaper37, unicodeEscaper40 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator42 = unicodeEscaper25.with(charSequenceTranslatorArray41);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator43 = unicodeEscaper20.with(charSequenceTranslatorArray41);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper17.with(charSequenceTranslatorArray41);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator45 = unicodeEscaper14.with(charSequenceTranslatorArray41);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator46 = unicodeEscaper7.with(charSequenceTranslatorArray41);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator47 = unicodeEscaper4.with(charSequenceTranslatorArray41);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator48 = unicodeEscaper2.with(charSequenceTranslatorArray41);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper4);
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertEquals("'" + str9 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034" + "'", str9, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
org.junit.Assert.assertEquals("'" + str11 + "' != '" + "\\\\u00750030" + "'", str11, "\\\\u00750030");
org.junit.Assert.assertNotNull(unicodeEscaper14);
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertEquals("'" + str22 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str22, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertEquals("'" + str27 + "' != '" + "hi!" + "'", str27, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertTrue("'" + int34 + "' != '" + 0 + "'", int34 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper36);
org.junit.Assert.assertNotNull(unicodeEscaper40);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray41);
org.junit.Assert.assertNotNull(charSequenceTranslator42);
org.junit.Assert.assertNotNull(charSequenceTranslator43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertNotNull(charSequenceTranslator45);
org.junit.Assert.assertNotNull(charSequenceTranslator46);
org.junit.Assert.assertNotNull(charSequenceTranslator47);
org.junit.Assert.assertNotNull(charSequenceTranslator48);
}
@Test
public void test2324() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2324");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer10 = null;
int int11 = unicodeEscaper7.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray18 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper7, unicodeEscaper13, unicodeEscaper14, unicodeEscaper17 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator19 = unicodeEscaper2.with(charSequenceTranslatorArray18);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) 0);
java.io.Writer writer23 = null;
boolean boolean24 = unicodeEscaper21.translate(1, writer23);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (short) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper29 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 100, (int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper34 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str36 = unicodeEscaper34.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper39 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str41 = unicodeEscaper39.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper44 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer47 = null;
int int48 = unicodeEscaper44.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer47);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper50 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper51 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper54 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray55 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper44, unicodeEscaper50, unicodeEscaper51, unicodeEscaper54 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator56 = unicodeEscaper39.with(charSequenceTranslatorArray55);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator57 = unicodeEscaper34.with(charSequenceTranslatorArray55);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator58 = unicodeEscaper31.with(charSequenceTranslatorArray55);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper61 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(10, 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper64 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper66 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray67 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper31, unicodeEscaper61, unicodeEscaper64, unicodeEscaper66 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator68 = unicodeEscaper29.with(charSequenceTranslatorArray67);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator69 = unicodeEscaper26.with(charSequenceTranslatorArray67);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator70 = unicodeEscaper21.with(charSequenceTranslatorArray67);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator71 = unicodeEscaper2.with(charSequenceTranslatorArray67);
java.io.Writer writer73 = null;
boolean boolean74 = unicodeEscaper2.translate(0, writer73);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "hi!" + "'", str4, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertTrue("'" + int11 + "' != '" + 0 + "'", int11 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray18);
org.junit.Assert.assertNotNull(charSequenceTranslator19);
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertTrue("'" + boolean24 + "' != '" + false + "'", boolean24 == false);
org.junit.Assert.assertNotNull(unicodeEscaper26);
org.junit.Assert.assertNotNull(unicodeEscaper29);
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertNotNull(unicodeEscaper34);
org.junit.Assert.assertEquals("'" + str36 + "' != '" + "hi!" + "'", str36, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper39);
org.junit.Assert.assertEquals("'" + str41 + "' != '" + "hi!" + "'", str41, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper44);
org.junit.Assert.assertTrue("'" + int48 + "' != '" + 0 + "'", int48 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper50);
org.junit.Assert.assertNotNull(unicodeEscaper54);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray55);
org.junit.Assert.assertNotNull(charSequenceTranslator56);
org.junit.Assert.assertNotNull(charSequenceTranslator57);
org.junit.Assert.assertNotNull(charSequenceTranslator58);
org.junit.Assert.assertNotNull(unicodeEscaper61);
org.junit.Assert.assertNotNull(unicodeEscaper64);
org.junit.Assert.assertNotNull(unicodeEscaper66);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray67);
org.junit.Assert.assertNotNull(charSequenceTranslator68);
org.junit.Assert.assertNotNull(charSequenceTranslator69);
org.junit.Assert.assertNotNull(charSequenceTranslator70);
org.junit.Assert.assertNotNull(charSequenceTranslator71);
org.junit.Assert.assertTrue("'" + boolean74 + "' != '" + false + "'", boolean74 == false);
}
@Test
public void test2325() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2325");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((-1), (-1));
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (short) 0, writer4);
java.lang.String str7 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750036\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750034");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750036\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750034" + "'", str7, "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750036\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750034");
}
@Test
public void test2326() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2326");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) ' ');
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u00750030");
java.io.Writer writer6 = null;
boolean boolean7 = unicodeEscaper2.translate((int) (short) 1, writer6);
java.io.Writer writer10 = null;
int int11 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0032\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033", 10, writer10);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\\\u00750030" + "'", str4, "\\\\u00750030");
org.junit.Assert.assertTrue("'" + boolean7 + "' != '" + false + "'", boolean7 == false);
org.junit.Assert.assertTrue("'" + int11 + "' != '" + 0 + "'", int11 == 0);
}
@Test
public void test2327() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2327");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 0, 10);
java.lang.Class<?> wildcardClass3 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(wildcardClass3);
}
@Test
public void test2328() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2328");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 100, (-1));
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer13 = null;
int int14 = unicodeEscaper10.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer13);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray21 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper10, unicodeEscaper16, unicodeEscaper17, unicodeEscaper20 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator22 = unicodeEscaper5.with(charSequenceTranslatorArray21);
java.lang.String str24 = unicodeEscaper5.translate((java.lang.CharSequence) "\\u0033\\u0034");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) 'a', (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str32 = unicodeEscaper30.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer38 = null;
int int39 = unicodeEscaper35.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer38);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper42 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper45 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray46 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper35, unicodeEscaper41, unicodeEscaper42, unicodeEscaper45 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator47 = unicodeEscaper30.with(charSequenceTranslatorArray46);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator48 = unicodeEscaper27.with(charSequenceTranslatorArray46);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator49 = unicodeEscaper5.with(charSequenceTranslatorArray46);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator50 = unicodeEscaper2.with(charSequenceTranslatorArray46);
java.io.Writer writer52 = null;
boolean boolean53 = unicodeEscaper2.translate((int) (short) 100, writer52);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray54 = null;
// The following exception was thrown during execution in test generation
try {
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator55 = unicodeEscaper2.with(charSequenceTranslatorArray54);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "hi!" + "'", str7, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertTrue("'" + int14 + "' != '" + 0 + "'", int14 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray21);
org.junit.Assert.assertNotNull(charSequenceTranslator22);
org.junit.Assert.assertEquals("'" + str24 + "' != '" + "\\u0033\\u0034" + "'", str24, "\\u0033\\u0034");
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertEquals("'" + str32 + "' != '" + "hi!" + "'", str32, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper35);
org.junit.Assert.assertTrue("'" + int39 + "' != '" + 0 + "'", int39 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper41);
org.junit.Assert.assertNotNull(unicodeEscaper45);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray46);
org.junit.Assert.assertNotNull(charSequenceTranslator47);
org.junit.Assert.assertNotNull(charSequenceTranslator48);
org.junit.Assert.assertNotNull(charSequenceTranslator49);
org.junit.Assert.assertNotNull(charSequenceTranslator50);
org.junit.Assert.assertTrue("'" + boolean53 + "' != '" + false + "'", boolean53 == false);
}
@Test
public void test2329() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2329");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, (int) '#');
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u00750032\\\\u00750033");
java.io.Writer writer7 = null;
int int8 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030", (int) (byte) 0, writer7);
java.lang.Class<?> wildcardClass9 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\\\u00750032\\\\u00750033" + "'", str4, "\\\\u00750032\\\\u00750033");
org.junit.Assert.assertTrue("'" + int8 + "' != '" + 0 + "'", int8 == 0);
org.junit.Assert.assertNotNull(wildcardClass9);
}
@Test
public void test2330() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2330");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) 'a');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper3 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (short) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper6 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) -1, (int) (short) -1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper9 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str11 = unicodeEscaper9.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str16 = unicodeEscaper14.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer22 = null;
int int23 = unicodeEscaper19.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer22);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper29 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray30 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper19, unicodeEscaper25, unicodeEscaper26, unicodeEscaper29 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper14.with(charSequenceTranslatorArray30);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator32 = unicodeEscaper9.with(charSequenceTranslatorArray30);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer38 = null;
int int39 = unicodeEscaper35.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer38);
java.io.Writer writer41 = null;
boolean boolean42 = unicodeEscaper35.translate((int) (byte) -1, writer41);
java.lang.String str44 = unicodeEscaper35.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper47 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str49 = unicodeEscaper47.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray50 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper35, unicodeEscaper47 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator51 = unicodeEscaper9.with(charSequenceTranslatorArray50);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator52 = unicodeEscaper6.with(charSequenceTranslatorArray50);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator53 = unicodeEscaper3.with(charSequenceTranslatorArray50);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator54 = unicodeEscaper1.with(charSequenceTranslatorArray50);
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertNotNull(unicodeEscaper3);
org.junit.Assert.assertNotNull(unicodeEscaper6);
org.junit.Assert.assertNotNull(unicodeEscaper9);
org.junit.Assert.assertEquals("'" + str11 + "' != '" + "hi!" + "'", str11, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper14);
org.junit.Assert.assertEquals("'" + str16 + "' != '" + "hi!" + "'", str16, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper19);
org.junit.Assert.assertTrue("'" + int23 + "' != '" + 0 + "'", int23 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertNotNull(unicodeEscaper29);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
org.junit.Assert.assertNotNull(charSequenceTranslator32);
org.junit.Assert.assertNotNull(unicodeEscaper35);
org.junit.Assert.assertTrue("'" + int39 + "' != '" + 0 + "'", int39 == 0);
org.junit.Assert.assertTrue("'" + boolean42 + "' != '" + false + "'", boolean42 == false);
org.junit.Assert.assertEquals("'" + str44 + "' != '" + "0" + "'", str44, "0");
org.junit.Assert.assertNotNull(unicodeEscaper47);
org.junit.Assert.assertEquals("'" + str49 + "' != '" + "hi!" + "'", str49, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray50);
org.junit.Assert.assertNotNull(charSequenceTranslator51);
org.junit.Assert.assertNotNull(charSequenceTranslator52);
org.junit.Assert.assertNotNull(charSequenceTranslator53);
org.junit.Assert.assertNotNull(charSequenceTranslator54);
}
@Test
public void test2331() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2331");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (int) (short) 100);
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "34", (int) (short) 1, writer5);
java.io.Writer writer8 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030", writer8);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
}
@Test
public void test2332() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2332");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) 'a');
java.io.Writer writer5 = null;
// The following exception was thrown during execution in test generation
try {
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "6\\u\\u0030\\u0030\\u0033\\u0031", (int) (byte) 100, writer5);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: 100");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2333() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2333");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, (int) '#');
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u00750032\\\\u00750033");
java.lang.String str6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u0075\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper9 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str11 = unicodeEscaper9.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str16 = unicodeEscaper14.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer22 = null;
int int23 = unicodeEscaper19.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer22);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper29 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray30 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper19, unicodeEscaper25, unicodeEscaper26, unicodeEscaper29 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper14.with(charSequenceTranslatorArray30);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator32 = unicodeEscaper9.with(charSequenceTranslatorArray30);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer38 = null;
int int39 = unicodeEscaper35.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer38);
java.io.Writer writer41 = null;
boolean boolean42 = unicodeEscaper35.translate((int) (byte) -1, writer41);
java.lang.String str44 = unicodeEscaper35.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper47 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str49 = unicodeEscaper47.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray50 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper35, unicodeEscaper47 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator51 = unicodeEscaper9.with(charSequenceTranslatorArray50);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper54 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str56 = unicodeEscaper54.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper59 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer62 = null;
int int63 = unicodeEscaper59.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer62);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper65 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper66 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper69 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray70 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper59, unicodeEscaper65, unicodeEscaper66, unicodeEscaper69 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator71 = unicodeEscaper54.with(charSequenceTranslatorArray70);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator72 = unicodeEscaper9.with(charSequenceTranslatorArray70);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator73 = unicodeEscaper2.with(charSequenceTranslatorArray70);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\\\u00750032\\\\u00750033" + "'", str4, "\\\\u00750032\\\\u00750033");
org.junit.Assert.assertEquals("'" + str6 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u0075\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031" + "'", str6, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u0075\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper9);
org.junit.Assert.assertEquals("'" + str11 + "' != '" + "hi!" + "'", str11, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper14);
org.junit.Assert.assertEquals("'" + str16 + "' != '" + "hi!" + "'", str16, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper19);
org.junit.Assert.assertTrue("'" + int23 + "' != '" + 0 + "'", int23 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertNotNull(unicodeEscaper29);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
org.junit.Assert.assertNotNull(charSequenceTranslator32);
org.junit.Assert.assertNotNull(unicodeEscaper35);
org.junit.Assert.assertTrue("'" + int39 + "' != '" + 0 + "'", int39 == 0);
org.junit.Assert.assertTrue("'" + boolean42 + "' != '" + false + "'", boolean42 == false);
org.junit.Assert.assertEquals("'" + str44 + "' != '" + "0" + "'", str44, "0");
org.junit.Assert.assertNotNull(unicodeEscaper47);
org.junit.Assert.assertEquals("'" + str49 + "' != '" + "hi!" + "'", str49, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray50);
org.junit.Assert.assertNotNull(charSequenceTranslator51);
org.junit.Assert.assertNotNull(unicodeEscaper54);
org.junit.Assert.assertEquals("'" + str56 + "' != '" + "hi!" + "'", str56, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper59);
org.junit.Assert.assertTrue("'" + int63 + "' != '" + 0 + "'", int63 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper65);
org.junit.Assert.assertNotNull(unicodeEscaper69);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray70);
org.junit.Assert.assertNotNull(charSequenceTranslator71);
org.junit.Assert.assertNotNull(charSequenceTranslator72);
org.junit.Assert.assertNotNull(charSequenceTranslator73);
}
@Test
public void test2334() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2334");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) 'a', (int) '#');
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "hi!");
java.io.Writer writer6 = null;
boolean boolean7 = unicodeEscaper2.translate((int) (short) 1, writer6);
java.io.Writer writer9 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\u0032\\u0030", writer9);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "hi!" + "'", str4, "hi!");
org.junit.Assert.assertTrue("'" + boolean7 + "' != '" + false + "'", boolean7 == false);
}
@Test
public void test2335() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2335");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) 'a', (int) 'a');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str12 = unicodeEscaper10.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer18 = null;
int int19 = unicodeEscaper15.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer18);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray26 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper15, unicodeEscaper21, unicodeEscaper22, unicodeEscaper25 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator27 = unicodeEscaper10.with(charSequenceTranslatorArray26);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator28 = unicodeEscaper5.with(charSequenceTranslatorArray26);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper33 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer35 = null;
boolean boolean36 = unicodeEscaper33.translate((int) (short) 0, writer35);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper39 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray40 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper33, unicodeEscaper37, unicodeEscaper39 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator41 = unicodeEscaper30.with(charSequenceTranslatorArray40);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator42 = charSequenceTranslator28.with(charSequenceTranslatorArray40);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator43 = unicodeEscaper2.with(charSequenceTranslatorArray40);
java.lang.String str45 = charSequenceTranslator43.translate((java.lang.CharSequence) "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str7, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertEquals("'" + str12 + "' != '" + "hi!" + "'", str12, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertTrue("'" + int19 + "' != '" + 0 + "'", int19 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray26);
org.junit.Assert.assertNotNull(charSequenceTranslator27);
org.junit.Assert.assertNotNull(charSequenceTranslator28);
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertNotNull(unicodeEscaper33);
org.junit.Assert.assertTrue("'" + boolean36 + "' != '" + false + "'", boolean36 == false);
org.junit.Assert.assertNotNull(unicodeEscaper39);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray40);
org.junit.Assert.assertNotNull(charSequenceTranslator41);
org.junit.Assert.assertNotNull(charSequenceTranslator42);
org.junit.Assert.assertNotNull(charSequenceTranslator43);
org.junit.Assert.assertEquals("'" + str45 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str45, "\\u0068\\u0069\\u0021");
}
@Test
public void test2336() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2336");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 100, (int) (byte) 10);
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2337() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2337");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (short) 0, writer4);
java.lang.String str7 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u00750030");
java.io.Writer writer9 = null;
boolean boolean10 = unicodeEscaper2.translate((int) (byte) -1, writer9);
java.io.Writer writer13 = null;
// The following exception was thrown during execution in test generation
try {
int int14 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750032\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033", (int) (byte) -1, writer13);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: -1");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "\\\\u00750030" + "'", str7, "\\\\u00750030");
org.junit.Assert.assertTrue("'" + boolean10 + "' != '" + false + "'", boolean10 == false);
}
@Test
public void test2338() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2338");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(1, (int) (short) 10);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030" + "'", str4, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
}
@Test
public void test2339() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2339");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 100);
java.io.Writer writer3 = null;
boolean boolean4 = unicodeEscaper1.translate((int) (short) 0, writer3);
java.lang.String str6 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
java.lang.String str8 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u0030");
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertTrue("'" + boolean4 + "' != '" + false + "'", boolean4 == false);
org.junit.Assert.assertEquals("'" + str6 + "' != '" + "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030" + "'", str6, "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030");
org.junit.Assert.assertEquals("'" + str8 + "' != '" + "\\\\u00750030" + "'", str8, "\\\\u00750030");
}
@Test
public void test2340() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2340");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer5);
java.io.Writer writer9 = null;
// The following exception was thrown during execution in test generation
try {
int int10 = unicodeEscaper2.translate((java.lang.CharSequence) "34", (int) 'a', writer9);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: 97");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
}
@Test
public void test2341() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2341");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 1, (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) -1, 0);
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "1");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str12 = unicodeEscaper10.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str17 = unicodeEscaper15.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer23 = null;
int int24 = unicodeEscaper20.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer23);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray31 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper20, unicodeEscaper26, unicodeEscaper27, unicodeEscaper30 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator32 = unicodeEscaper15.with(charSequenceTranslatorArray31);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper10.with(charSequenceTranslatorArray31);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer39 = null;
int int40 = unicodeEscaper36.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer39);
java.io.Writer writer42 = null;
boolean boolean43 = unicodeEscaper36.translate((int) (byte) -1, writer42);
java.lang.String str45 = unicodeEscaper36.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper48 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str50 = unicodeEscaper48.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray51 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper36, unicodeEscaper48 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator52 = unicodeEscaper10.with(charSequenceTranslatorArray51);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator53 = unicodeEscaper5.with(charSequenceTranslatorArray51);
java.lang.String str55 = unicodeEscaper5.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0036\\u0038\\u005C\\u0075\\u0030\\u0030\\u0036\\u0039\\u005C\\u0075\\u0030\\u0030\\u0032\\u0031");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper58 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) 'a', (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper61 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str63 = unicodeEscaper61.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper66 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer69 = null;
int int70 = unicodeEscaper66.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer69);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper72 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper73 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper76 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray77 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper66, unicodeEscaper72, unicodeEscaper73, unicodeEscaper76 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator78 = unicodeEscaper61.with(charSequenceTranslatorArray77);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator79 = unicodeEscaper58.with(charSequenceTranslatorArray77);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator80 = unicodeEscaper5.with(charSequenceTranslatorArray77);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator81 = unicodeEscaper2.with(charSequenceTranslatorArray77);
java.lang.Class<?> wildcardClass82 = charSequenceTranslator81.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "\\u0031" + "'", str7, "\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertEquals("'" + str12 + "' != '" + "hi!" + "'", str12, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertEquals("'" + str17 + "' != '" + "hi!" + "'", str17, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertTrue("'" + int24 + "' != '" + 0 + "'", int24 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper26);
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray31);
org.junit.Assert.assertNotNull(charSequenceTranslator32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
org.junit.Assert.assertNotNull(unicodeEscaper36);
org.junit.Assert.assertTrue("'" + int40 + "' != '" + 0 + "'", int40 == 0);
org.junit.Assert.assertTrue("'" + boolean43 + "' != '" + false + "'", boolean43 == false);
org.junit.Assert.assertEquals("'" + str45 + "' != '" + "0" + "'", str45, "0");
org.junit.Assert.assertNotNull(unicodeEscaper48);
org.junit.Assert.assertEquals("'" + str50 + "' != '" + "hi!" + "'", str50, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray51);
org.junit.Assert.assertNotNull(charSequenceTranslator52);
org.junit.Assert.assertNotNull(charSequenceTranslator53);
org.junit.Assert.assertEquals("'" + str55 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0038\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0039\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031" + "'", str55, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0038\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0039\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper58);
org.junit.Assert.assertNotNull(unicodeEscaper61);
org.junit.Assert.assertEquals("'" + str63 + "' != '" + "hi!" + "'", str63, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper66);
org.junit.Assert.assertTrue("'" + int70 + "' != '" + 0 + "'", int70 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper72);
org.junit.Assert.assertNotNull(unicodeEscaper76);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray77);
org.junit.Assert.assertNotNull(charSequenceTranslator78);
org.junit.Assert.assertNotNull(charSequenceTranslator79);
org.junit.Assert.assertNotNull(charSequenceTranslator80);
org.junit.Assert.assertNotNull(charSequenceTranslator81);
org.junit.Assert.assertNotNull(wildcardClass82);
}
@Test
public void test2342() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2342");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, 1);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
java.lang.String str6 = unicodeEscaper2.translate((java.lang.CharSequence) "64");
java.lang.String str8 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
java.lang.String str10 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
java.io.Writer writer12 = null;
boolean boolean13 = unicodeEscaper2.translate((int) (short) 0, writer12);
java.lang.Class<?> wildcardClass14 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030" + "'", str4, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
org.junit.Assert.assertEquals("'" + str6 + "' != '" + "64" + "'", str6, "64");
org.junit.Assert.assertEquals("'" + str8 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034" + "'", str8, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
org.junit.Assert.assertEquals("'" + str10 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034" + "'", str10, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
org.junit.Assert.assertTrue("'" + boolean13 + "' != '" + false + "'", boolean13 == false);
org.junit.Assert.assertNotNull(wildcardClass14);
}
@Test
public void test2343() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2343");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) -1, (int) (short) 1);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750037\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030");
java.lang.String str6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
java.io.Writer writer9 = null;
// The following exception was thrown during execution in test generation
try {
int int10 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0033\\u0034", 100, writer9);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: 100");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750037\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030" + "'", str4, "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750037\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030");
org.junit.Assert.assertEquals("'" + str6 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030" + "'", str6, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
}
@Test
public void test2344() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2344");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer7 = null;
boolean boolean8 = unicodeEscaper5.translate((int) (short) 0, writer7);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str13 = unicodeEscaper11.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str18 = unicodeEscaper16.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer24 = null;
int int25 = unicodeEscaper21.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer24);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray32 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper21, unicodeEscaper27, unicodeEscaper28, unicodeEscaper31 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper16.with(charSequenceTranslatorArray32);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator34 = unicodeEscaper11.with(charSequenceTranslatorArray32);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator35 = unicodeEscaper5.with(charSequenceTranslatorArray32);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator36 = unicodeEscaper2.with(charSequenceTranslatorArray32);
java.lang.Class<?> wildcardClass37 = charSequenceTranslator36.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertTrue("'" + boolean8 + "' != '" + false + "'", boolean8 == false);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertEquals("'" + str13 + "' != '" + "hi!" + "'", str13, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertEquals("'" + str18 + "' != '" + "hi!" + "'", str18, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertTrue("'" + int25 + "' != '" + 0 + "'", int25 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
org.junit.Assert.assertNotNull(charSequenceTranslator34);
org.junit.Assert.assertNotNull(charSequenceTranslator35);
org.junit.Assert.assertNotNull(charSequenceTranslator36);
org.junit.Assert.assertNotNull(wildcardClass37);
}
@Test
public void test2345() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2345");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "hi!");
java.io.Writer writer6 = null;
boolean boolean7 = unicodeEscaper2.translate(0, writer6);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str17 = unicodeEscaper15.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str22 = unicodeEscaper20.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer28 = null;
int int29 = unicodeEscaper25.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer28);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray36 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper25, unicodeEscaper31, unicodeEscaper32, unicodeEscaper35 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator37 = unicodeEscaper20.with(charSequenceTranslatorArray36);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator38 = unicodeEscaper15.with(charSequenceTranslatorArray36);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator39 = unicodeEscaper12.with(charSequenceTranslatorArray36);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator40 = unicodeEscaper10.with(charSequenceTranslatorArray36);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator41 = unicodeEscaper2.with(charSequenceTranslatorArray36);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper44 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 0, (-1));
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper46 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper49 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer51 = null;
boolean boolean52 = unicodeEscaper49.translate((int) (short) 0, writer51);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper53 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper55 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray56 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper49, unicodeEscaper53, unicodeEscaper55 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator57 = unicodeEscaper46.with(charSequenceTranslatorArray56);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator58 = unicodeEscaper44.with(charSequenceTranslatorArray56);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator59 = charSequenceTranslator41.with(charSequenceTranslatorArray56);
java.io.Writer writer61 = null;
// The following exception was thrown during execution in test generation
try {
charSequenceTranslator59.translate((java.lang.CharSequence) "1", writer61);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "hi!" + "'", str4, "hi!");
org.junit.Assert.assertTrue("'" + boolean7 + "' != '" + false + "'", boolean7 == false);
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertEquals("'" + str17 + "' != '" + "hi!" + "'", str17, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertEquals("'" + str22 + "' != '" + "hi!" + "'", str22, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertTrue("'" + int29 + "' != '" + 0 + "'", int29 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertNotNull(unicodeEscaper35);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray36);
org.junit.Assert.assertNotNull(charSequenceTranslator37);
org.junit.Assert.assertNotNull(charSequenceTranslator38);
org.junit.Assert.assertNotNull(charSequenceTranslator39);
org.junit.Assert.assertNotNull(charSequenceTranslator40);
org.junit.Assert.assertNotNull(charSequenceTranslator41);
org.junit.Assert.assertNotNull(unicodeEscaper44);
org.junit.Assert.assertNotNull(unicodeEscaper46);
org.junit.Assert.assertNotNull(unicodeEscaper49);
org.junit.Assert.assertTrue("'" + boolean52 + "' != '" + false + "'", boolean52 == false);
org.junit.Assert.assertNotNull(unicodeEscaper55);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray56);
org.junit.Assert.assertNotNull(charSequenceTranslator57);
org.junit.Assert.assertNotNull(charSequenceTranslator58);
org.junit.Assert.assertNotNull(charSequenceTranslator59);
}
@Test
public void test2346() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2346");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str9 = unicodeEscaper7.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer15 = null;
int int16 = unicodeEscaper12.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer15);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray23 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper12, unicodeEscaper18, unicodeEscaper19, unicodeEscaper22 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator24 = unicodeEscaper7.with(charSequenceTranslatorArray23);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator25 = unicodeEscaper2.with(charSequenceTranslatorArray23);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer31 = null;
int int32 = unicodeEscaper28.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer31);
java.io.Writer writer34 = null;
boolean boolean35 = unicodeEscaper28.translate((int) (byte) -1, writer34);
java.lang.String str37 = unicodeEscaper28.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str42 = unicodeEscaper40.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray43 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper28, unicodeEscaper40 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper2.with(charSequenceTranslatorArray43);
java.lang.String str46 = unicodeEscaper2.translate((java.lang.CharSequence) "");
java.io.Writer writer49 = null;
int int50 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034", 0, writer49);
java.io.Writer writer53 = null;
int int54 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034", (int) 'a', writer53);
java.io.Writer writer56 = null;
boolean boolean57 = unicodeEscaper2.translate((int) (short) -1, writer56);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "hi!" + "'", str4, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertEquals("'" + str9 + "' != '" + "hi!" + "'", str9, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertTrue("'" + int16 + "' != '" + 0 + "'", int16 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray23);
org.junit.Assert.assertNotNull(charSequenceTranslator24);
org.junit.Assert.assertNotNull(charSequenceTranslator25);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertTrue("'" + int32 + "' != '" + 0 + "'", int32 == 0);
org.junit.Assert.assertTrue("'" + boolean35 + "' != '" + false + "'", boolean35 == false);
org.junit.Assert.assertEquals("'" + str37 + "' != '" + "0" + "'", str37, "0");
org.junit.Assert.assertNotNull(unicodeEscaper40);
org.junit.Assert.assertEquals("'" + str42 + "' != '" + "hi!" + "'", str42, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertEquals("'" + str46 + "' != '" + "" + "'", str46, "");
org.junit.Assert.assertTrue("'" + int50 + "' != '" + 0 + "'", int50 == 0);
org.junit.Assert.assertTrue("'" + int54 + "' != '" + 0 + "'", int54 == 0);
org.junit.Assert.assertTrue("'" + boolean57 + "' != '" + false + "'", boolean57 == false);
}
@Test
public void test2347() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2347");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 10, (int) 'a');
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((-1), writer4);
java.io.Writer writer7 = null;
boolean boolean8 = unicodeEscaper2.translate((int) (byte) 100, writer7);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertTrue("'" + boolean8 + "' != '" + false + "'", boolean8 == false);
}
@Test
public void test2348() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2348");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(0, (int) ' ');
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u00750030");
java.io.Writer writer6 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean7 = unicodeEscaper2.translate((int) (short) 0, writer6);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\\\u00750030" + "'", str4, "\\\\u00750030");
}
@Test
public void test2349() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2349");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (byte) 100, writer4);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str13 = unicodeEscaper11.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer19 = null;
int int20 = unicodeEscaper16.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer19);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper23 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray27 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper16, unicodeEscaper22, unicodeEscaper23, unicodeEscaper26 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator28 = unicodeEscaper11.with(charSequenceTranslatorArray27);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator29 = unicodeEscaper8.with(charSequenceTranslatorArray27);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator30 = unicodeEscaper2.with(charSequenceTranslatorArray27);
java.io.Writer writer32 = null;
boolean boolean33 = unicodeEscaper2.translate((int) ' ', writer32);
java.io.Writer writer36 = null;
int int37 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031", 0, writer36);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertEquals("'" + str13 + "' != '" + "hi!" + "'", str13, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertTrue("'" + int20 + "' != '" + 0 + "'", int20 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertNotNull(unicodeEscaper26);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray27);
org.junit.Assert.assertNotNull(charSequenceTranslator28);
org.junit.Assert.assertNotNull(charSequenceTranslator29);
org.junit.Assert.assertNotNull(charSequenceTranslator30);
org.junit.Assert.assertTrue("'" + boolean33 + "' != '" + false + "'", boolean33 == false);
org.junit.Assert.assertTrue("'" + int37 + "' != '" + 0 + "'", int37 == 0);
}
@Test
public void test2350() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2350");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((-1), (int) (short) 100);
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2351() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2351");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 0, (-1));
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "6\\u0031", 0, writer5);
java.io.Writer writer9 = null;
int int10 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030", 100, writer9);
java.lang.String str12 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str17 = unicodeEscaper15.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str22 = unicodeEscaper20.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer28 = null;
int int29 = unicodeEscaper25.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer28);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray36 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper25, unicodeEscaper31, unicodeEscaper32, unicodeEscaper35 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator37 = unicodeEscaper20.with(charSequenceTranslatorArray36);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator38 = unicodeEscaper15.with(charSequenceTranslatorArray36);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) 10);
java.io.Writer writer42 = null;
boolean boolean43 = unicodeEscaper40.translate((int) (byte) 100, writer42);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper45 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper48 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 1, (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper51 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer53 = null;
boolean boolean54 = unicodeEscaper51.translate((int) (short) 0, writer53);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str59 = unicodeEscaper57.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper62 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str64 = unicodeEscaper62.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper67 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer70 = null;
int int71 = unicodeEscaper67.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer70);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper73 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper74 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper77 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray78 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper67, unicodeEscaper73, unicodeEscaper74, unicodeEscaper77 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator79 = unicodeEscaper62.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator80 = unicodeEscaper57.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator81 = unicodeEscaper51.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper84 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) -1, (int) (byte) 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper87 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 100, (int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper89 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) ' ');
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray90 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper45, unicodeEscaper48, charSequenceTranslator81, unicodeEscaper84, unicodeEscaper87, unicodeEscaper89 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator91 = unicodeEscaper40.with(charSequenceTranslatorArray90);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator92 = charSequenceTranslator38.with(charSequenceTranslatorArray90);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator93 = unicodeEscaper2.with(charSequenceTranslatorArray90);
java.io.Writer writer95 = null;
boolean boolean96 = unicodeEscaper2.translate((int) (byte) 100, writer95);
java.lang.Class<?> wildcardClass97 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
org.junit.Assert.assertTrue("'" + int10 + "' != '" + 0 + "'", int10 == 0);
org.junit.Assert.assertEquals("'" + str12 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031" + "'", str12, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertEquals("'" + str17 + "' != '" + "hi!" + "'", str17, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertEquals("'" + str22 + "' != '" + "hi!" + "'", str22, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertTrue("'" + int29 + "' != '" + 0 + "'", int29 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertNotNull(unicodeEscaper35);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray36);
org.junit.Assert.assertNotNull(charSequenceTranslator37);
org.junit.Assert.assertNotNull(charSequenceTranslator38);
org.junit.Assert.assertNotNull(unicodeEscaper40);
org.junit.Assert.assertTrue("'" + boolean43 + "' != '" + false + "'", boolean43 == false);
org.junit.Assert.assertNotNull(unicodeEscaper45);
org.junit.Assert.assertNotNull(unicodeEscaper48);
org.junit.Assert.assertNotNull(unicodeEscaper51);
org.junit.Assert.assertTrue("'" + boolean54 + "' != '" + false + "'", boolean54 == false);
org.junit.Assert.assertNotNull(unicodeEscaper57);
org.junit.Assert.assertEquals("'" + str59 + "' != '" + "hi!" + "'", str59, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper62);
org.junit.Assert.assertEquals("'" + str64 + "' != '" + "hi!" + "'", str64, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper67);
org.junit.Assert.assertTrue("'" + int71 + "' != '" + 0 + "'", int71 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper73);
org.junit.Assert.assertNotNull(unicodeEscaper77);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray78);
org.junit.Assert.assertNotNull(charSequenceTranslator79);
org.junit.Assert.assertNotNull(charSequenceTranslator80);
org.junit.Assert.assertNotNull(charSequenceTranslator81);
org.junit.Assert.assertNotNull(unicodeEscaper84);
org.junit.Assert.assertNotNull(unicodeEscaper87);
org.junit.Assert.assertNotNull(unicodeEscaper89);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray90);
org.junit.Assert.assertNotNull(charSequenceTranslator91);
org.junit.Assert.assertNotNull(charSequenceTranslator92);
org.junit.Assert.assertNotNull(charSequenceTranslator93);
org.junit.Assert.assertTrue("'" + boolean96 + "' != '" + false + "'", boolean96 == false);
org.junit.Assert.assertNotNull(wildcardClass97);
}
@Test
public void test2352() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2352");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (short) 0, writer4);
java.lang.String str7 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u00750030");
java.lang.Class<?> wildcardClass8 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "\\\\u00750030" + "'", str7, "\\\\u00750030");
org.junit.Assert.assertNotNull(wildcardClass8);
}
@Test
public void test2353() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2353");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) 0);
java.io.Writer writer3 = null;
boolean boolean4 = unicodeEscaper1.translate(1, writer3);
java.io.Writer writer6 = null;
boolean boolean7 = unicodeEscaper1.translate(0, writer6);
java.lang.Class<?> wildcardClass8 = unicodeEscaper1.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertTrue("'" + boolean4 + "' != '" + false + "'", boolean4 == false);
org.junit.Assert.assertTrue("'" + boolean7 + "' != '" + false + "'", boolean7 == false);
org.junit.Assert.assertNotNull(wildcardClass8);
}
@Test
public void test2354() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2354");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 1);
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\\\u00750075005C\\\\\\u007500750075\\\\\\u007500750030\\\\\\u007500750030\\\\\\u007500750033\\\\\\u007500750031", (int) ' ', writer5);
java.io.Writer writer9 = null;
int int10 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0038\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0039\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031", 1, writer9);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
org.junit.Assert.assertTrue("'" + int10 + "' != '" + 0 + "'", int10 == 0);
}
@Test
public void test2355() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2355");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) -1);
java.io.Writer writer3 = null;
boolean boolean4 = unicodeEscaper1.translate((int) (byte) 0, writer3);
java.io.Writer writer6 = null;
boolean boolean7 = unicodeEscaper1.translate((int) (short) 0, writer6);
java.io.Writer writer9 = null;
boolean boolean10 = unicodeEscaper1.translate((int) (byte) 100, writer9);
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertTrue("'" + boolean4 + "' != '" + false + "'", boolean4 == false);
org.junit.Assert.assertTrue("'" + boolean7 + "' != '" + false + "'", boolean7 == false);
org.junit.Assert.assertTrue("'" + boolean10 + "' != '" + false + "'", boolean10 == false);
}
@Test
public void test2356() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2356");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '#', 1);
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2357() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2357");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 1, (int) (byte) 10);
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0036\\u0038\\u005C\\u0075\\u0030\\u0030\\u0036\\u0039\\u005C\\u0075\\u0030\\u0030\\u0032\\u0031");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(0, (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, (int) 'a');
java.lang.String str15 = unicodeEscaper13.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, 1);
java.lang.String str20 = unicodeEscaper18.translate((java.lang.CharSequence) "FFFFFFFF");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper23 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str25 = unicodeEscaper23.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str30 = unicodeEscaper28.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper33 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer36 = null;
int int37 = unicodeEscaper33.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer36);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper39 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper43 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray44 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper33, unicodeEscaper39, unicodeEscaper40, unicodeEscaper43 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator45 = unicodeEscaper28.with(charSequenceTranslatorArray44);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator46 = unicodeEscaper23.with(charSequenceTranslatorArray44);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator47 = unicodeEscaper18.with(charSequenceTranslatorArray44);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator48 = unicodeEscaper13.with(charSequenceTranslatorArray44);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator49 = unicodeEscaper10.with(charSequenceTranslatorArray44);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator50 = unicodeEscaper5.with(charSequenceTranslatorArray44);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator51 = unicodeEscaper2.with(charSequenceTranslatorArray44);
java.io.Writer writer53 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "1", writer53);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0038\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0039\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031" + "'", str7, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0038\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0039\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertEquals("'" + str15 + "' != '" + "0" + "'", str15, "0");
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertEquals("'" + str20 + "' != '" + "FFFFFFFF" + "'", str20, "FFFFFFFF");
org.junit.Assert.assertNotNull(unicodeEscaper23);
org.junit.Assert.assertEquals("'" + str25 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str25, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertEquals("'" + str30 + "' != '" + "hi!" + "'", str30, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper33);
org.junit.Assert.assertTrue("'" + int37 + "' != '" + 0 + "'", int37 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper39);
org.junit.Assert.assertNotNull(unicodeEscaper43);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray44);
org.junit.Assert.assertNotNull(charSequenceTranslator45);
org.junit.Assert.assertNotNull(charSequenceTranslator46);
org.junit.Assert.assertNotNull(charSequenceTranslator47);
org.junit.Assert.assertNotNull(charSequenceTranslator48);
org.junit.Assert.assertNotNull(charSequenceTranslator49);
org.junit.Assert.assertNotNull(charSequenceTranslator50);
org.junit.Assert.assertNotNull(charSequenceTranslator51);
}
@Test
public void test2358() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2358");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 10, (int) (short) 10);
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u00750036\\\\u00750031", (int) (short) 0, writer5);
java.io.Writer writer9 = null;
int int10 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031", (int) (short) 1, writer9);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
org.junit.Assert.assertTrue("'" + int10 + "' != '" + 0 + "'", int10 == 0);
}
@Test
public void test2359() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2359");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (short) -1);
java.lang.String str3 = unicodeEscaper1.translate((java.lang.CharSequence) "");
java.io.Writer writer5 = null;
boolean boolean6 = unicodeEscaper1.translate(10, writer5);
java.lang.Class<?> wildcardClass7 = unicodeEscaper1.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertEquals("'" + str3 + "' != '" + "" + "'", str3, "");
org.junit.Assert.assertTrue("'" + boolean6 + "' != '" + false + "'", boolean6 == false);
org.junit.Assert.assertNotNull(wildcardClass7);
}
@Test
public void test2360() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2360");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (int) (byte) 0);
java.io.Writer writer4 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean5 = unicodeEscaper2.translate((int) (short) 0, writer4);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2361() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2361");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (byte) 1);
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2362() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2362");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 100, (int) (short) 10);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 1, (int) (short) 1);
java.io.Writer writer9 = null;
boolean boolean10 = unicodeEscaper7.translate((int) (byte) 1, writer9);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str15 = unicodeEscaper13.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str20 = unicodeEscaper18.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper23 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer26 = null;
int int27 = unicodeEscaper23.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer26);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper29 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper33 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray34 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper23, unicodeEscaper29, unicodeEscaper30, unicodeEscaper33 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator35 = unicodeEscaper18.with(charSequenceTranslatorArray34);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator36 = unicodeEscaper13.with(charSequenceTranslatorArray34);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper39 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer42 = null;
int int43 = unicodeEscaper39.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer42);
java.io.Writer writer45 = null;
boolean boolean46 = unicodeEscaper39.translate((int) (byte) -1, writer45);
java.lang.String str48 = unicodeEscaper39.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper51 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str53 = unicodeEscaper51.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray54 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper39, unicodeEscaper51 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator55 = unicodeEscaper13.with(charSequenceTranslatorArray54);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper58 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str60 = unicodeEscaper58.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper63 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer66 = null;
int int67 = unicodeEscaper63.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer66);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper69 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper70 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper73 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray74 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper63, unicodeEscaper69, unicodeEscaper70, unicodeEscaper73 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator75 = unicodeEscaper58.with(charSequenceTranslatorArray74);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator76 = unicodeEscaper13.with(charSequenceTranslatorArray74);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator77 = unicodeEscaper7.with(charSequenceTranslatorArray74);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator78 = unicodeEscaper2.with(charSequenceTranslatorArray74);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030" + "'", str4, "\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertTrue("'" + boolean10 + "' != '" + false + "'", boolean10 == false);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertEquals("'" + str15 + "' != '" + "hi!" + "'", str15, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertEquals("'" + str20 + "' != '" + "hi!" + "'", str20, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper23);
org.junit.Assert.assertTrue("'" + int27 + "' != '" + 0 + "'", int27 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper29);
org.junit.Assert.assertNotNull(unicodeEscaper33);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray34);
org.junit.Assert.assertNotNull(charSequenceTranslator35);
org.junit.Assert.assertNotNull(charSequenceTranslator36);
org.junit.Assert.assertNotNull(unicodeEscaper39);
org.junit.Assert.assertTrue("'" + int43 + "' != '" + 0 + "'", int43 == 0);
org.junit.Assert.assertTrue("'" + boolean46 + "' != '" + false + "'", boolean46 == false);
org.junit.Assert.assertEquals("'" + str48 + "' != '" + "0" + "'", str48, "0");
org.junit.Assert.assertNotNull(unicodeEscaper51);
org.junit.Assert.assertEquals("'" + str53 + "' != '" + "hi!" + "'", str53, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray54);
org.junit.Assert.assertNotNull(charSequenceTranslator55);
org.junit.Assert.assertNotNull(unicodeEscaper58);
org.junit.Assert.assertEquals("'" + str60 + "' != '" + "hi!" + "'", str60, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper63);
org.junit.Assert.assertTrue("'" + int67 + "' != '" + 0 + "'", int67 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper69);
org.junit.Assert.assertNotNull(unicodeEscaper73);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray74);
org.junit.Assert.assertNotNull(charSequenceTranslator75);
org.junit.Assert.assertNotNull(charSequenceTranslator76);
org.junit.Assert.assertNotNull(charSequenceTranslator77);
org.junit.Assert.assertNotNull(charSequenceTranslator78);
}
@Test
public void test2363() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2363");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(10);
java.lang.String str3 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
java.lang.String str5 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
java.lang.Class<?> wildcardClass6 = unicodeEscaper1.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertEquals("'" + str3 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034" + "'", str3, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
org.junit.Assert.assertEquals("'" + str5 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034" + "'", str5, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
org.junit.Assert.assertNotNull(wildcardClass6);
}
@Test
public void test2364() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2364");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 10, 0);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate(0, writer4);
java.io.Writer writer8 = null;
// The following exception was thrown during execution in test generation
try {
int int9 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034", (int) (short) -1, writer8);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: -1");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
}
@Test
public void test2365() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2365");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(1, (int) '#');
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) '#', writer4);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
}
@Test
public void test2366() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2366");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) -1);
java.io.Writer writer3 = null;
boolean boolean4 = unicodeEscaper1.translate((int) '#', writer3);
java.io.Writer writer6 = null;
boolean boolean7 = unicodeEscaper1.translate((-1), writer6);
java.io.Writer writer9 = null;
boolean boolean10 = unicodeEscaper1.translate((int) ' ', writer9);
java.io.Writer writer12 = null;
boolean boolean13 = unicodeEscaper1.translate((int) (byte) 10, writer12);
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertTrue("'" + boolean4 + "' != '" + false + "'", boolean4 == false);
org.junit.Assert.assertTrue("'" + boolean7 + "' != '" + false + "'", boolean7 == false);
org.junit.Assert.assertTrue("'" + boolean10 + "' != '" + false + "'", boolean10 == false);
org.junit.Assert.assertTrue("'" + boolean13 + "' != '" + false + "'", boolean13 == false);
}
@Test
public void test2367() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2367");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 1, (-1));
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u005Cu\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0038\\u005C\\u005C\\u005Cu\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0039\\u005C\\u005C\\u005Cu\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0032\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u005C\\u005C\\u005Cu\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0038\\u005C\\u005C\\u005Cu\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0039\\u005C\\u005C\\u005Cu\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0032\\u0031" + "'", str4, "\\u005C\\u005C\\u005Cu\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0038\\u005C\\u005C\\u005Cu\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0039\\u005C\\u005C\\u005Cu\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0032\\u0031");
}
@Test
public void test2368() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2368");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer5);
java.lang.CharSequence charSequence7 = null;
java.lang.String str8 = unicodeEscaper2.translate(charSequence7);
java.lang.String str10 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u00750030");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str18 = unicodeEscaper16.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str23 = unicodeEscaper21.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer29 = null;
int int30 = unicodeEscaper26.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer29);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper33 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray37 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper26, unicodeEscaper32, unicodeEscaper33, unicodeEscaper36 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator38 = unicodeEscaper21.with(charSequenceTranslatorArray37);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator39 = unicodeEscaper16.with(charSequenceTranslatorArray37);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator40 = unicodeEscaper13.with(charSequenceTranslatorArray37);
java.lang.String str42 = charSequenceTranslator40.translate((java.lang.CharSequence) "23");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper45 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str47 = unicodeEscaper45.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper50 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str52 = unicodeEscaper50.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper55 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer58 = null;
int int59 = unicodeEscaper55.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer58);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper61 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper62 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper65 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray66 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper55, unicodeEscaper61, unicodeEscaper62, unicodeEscaper65 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator67 = unicodeEscaper50.with(charSequenceTranslatorArray66);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator68 = unicodeEscaper45.with(charSequenceTranslatorArray66);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper71 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer74 = null;
int int75 = unicodeEscaper71.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer74);
java.io.Writer writer77 = null;
boolean boolean78 = unicodeEscaper71.translate((int) (byte) -1, writer77);
java.lang.String str80 = unicodeEscaper71.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper83 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str85 = unicodeEscaper83.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray86 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper71, unicodeEscaper83 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator87 = unicodeEscaper45.with(charSequenceTranslatorArray86);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator88 = charSequenceTranslator40.with(charSequenceTranslatorArray86);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator89 = unicodeEscaper2.with(charSequenceTranslatorArray86);
java.io.Writer writer91 = null;
boolean boolean92 = unicodeEscaper2.translate((-1), writer91);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
org.junit.Assert.assertNull(str8);
org.junit.Assert.assertEquals("'" + str10 + "' != '" + "\\\\u00750030" + "'", str10, "\\\\u00750030");
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertEquals("'" + str18 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str18, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertEquals("'" + str23 + "' != '" + "hi!" + "'", str23, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper26);
org.junit.Assert.assertTrue("'" + int30 + "' != '" + 0 + "'", int30 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper32);
org.junit.Assert.assertNotNull(unicodeEscaper36);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray37);
org.junit.Assert.assertNotNull(charSequenceTranslator38);
org.junit.Assert.assertNotNull(charSequenceTranslator39);
org.junit.Assert.assertNotNull(charSequenceTranslator40);
org.junit.Assert.assertEquals("'" + str42 + "' != '" + "\\u0032\\u0033" + "'", str42, "\\u0032\\u0033");
org.junit.Assert.assertNotNull(unicodeEscaper45);
org.junit.Assert.assertEquals("'" + str47 + "' != '" + "hi!" + "'", str47, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper50);
org.junit.Assert.assertEquals("'" + str52 + "' != '" + "hi!" + "'", str52, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper55);
org.junit.Assert.assertTrue("'" + int59 + "' != '" + 0 + "'", int59 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper61);
org.junit.Assert.assertNotNull(unicodeEscaper65);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray66);
org.junit.Assert.assertNotNull(charSequenceTranslator67);
org.junit.Assert.assertNotNull(charSequenceTranslator68);
org.junit.Assert.assertNotNull(unicodeEscaper71);
org.junit.Assert.assertTrue("'" + int75 + "' != '" + 0 + "'", int75 == 0);
org.junit.Assert.assertTrue("'" + boolean78 + "' != '" + false + "'", boolean78 == false);
org.junit.Assert.assertEquals("'" + str80 + "' != '" + "0" + "'", str80, "0");
org.junit.Assert.assertNotNull(unicodeEscaper83);
org.junit.Assert.assertEquals("'" + str85 + "' != '" + "hi!" + "'", str85, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray86);
org.junit.Assert.assertNotNull(charSequenceTranslator87);
org.junit.Assert.assertNotNull(charSequenceTranslator88);
org.junit.Assert.assertNotNull(charSequenceTranslator89);
org.junit.Assert.assertTrue("'" + boolean92 + "' != '" + false + "'", boolean92 == false);
}
@Test
public void test2369() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2369");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 1, (int) (short) -1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str10 = unicodeEscaper8.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str15 = unicodeEscaper13.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer21 = null;
int int22 = unicodeEscaper18.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer21);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray29 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper18, unicodeEscaper24, unicodeEscaper25, unicodeEscaper28 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator30 = unicodeEscaper13.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper8.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator32 = unicodeEscaper5.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper34 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str39 = unicodeEscaper37.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper42 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str44 = unicodeEscaper42.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper47 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer50 = null;
int int51 = unicodeEscaper47.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer50);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper53 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper54 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray58 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper47, unicodeEscaper53, unicodeEscaper54, unicodeEscaper57 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator59 = unicodeEscaper42.with(charSequenceTranslatorArray58);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator60 = unicodeEscaper37.with(charSequenceTranslatorArray58);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator61 = unicodeEscaper34.with(charSequenceTranslatorArray58);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator62 = charSequenceTranslator32.with(charSequenceTranslatorArray58);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator63 = unicodeEscaper2.with(charSequenceTranslatorArray58);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper66 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 100, 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper69 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 1, (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper72 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str74 = unicodeEscaper72.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper77 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str79 = unicodeEscaper77.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper82 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer85 = null;
int int86 = unicodeEscaper82.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer85);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper88 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper89 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper92 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray93 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper82, unicodeEscaper88, unicodeEscaper89, unicodeEscaper92 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator94 = unicodeEscaper77.with(charSequenceTranslatorArray93);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator95 = unicodeEscaper72.with(charSequenceTranslatorArray93);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator96 = unicodeEscaper69.with(charSequenceTranslatorArray93);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator97 = unicodeEscaper66.with(charSequenceTranslatorArray93);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator98 = charSequenceTranslator63.with(charSequenceTranslatorArray93);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertEquals("'" + str10 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str10, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertEquals("'" + str15 + "' != '" + "hi!" + "'", str15, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertTrue("'" + int22 + "' != '" + 0 + "'", int22 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray29);
org.junit.Assert.assertNotNull(charSequenceTranslator30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
org.junit.Assert.assertNotNull(charSequenceTranslator32);
org.junit.Assert.assertNotNull(unicodeEscaper34);
org.junit.Assert.assertNotNull(unicodeEscaper37);
org.junit.Assert.assertEquals("'" + str39 + "' != '" + "hi!" + "'", str39, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper42);
org.junit.Assert.assertEquals("'" + str44 + "' != '" + "hi!" + "'", str44, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper47);
org.junit.Assert.assertTrue("'" + int51 + "' != '" + 0 + "'", int51 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper53);
org.junit.Assert.assertNotNull(unicodeEscaper57);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray58);
org.junit.Assert.assertNotNull(charSequenceTranslator59);
org.junit.Assert.assertNotNull(charSequenceTranslator60);
org.junit.Assert.assertNotNull(charSequenceTranslator61);
org.junit.Assert.assertNotNull(charSequenceTranslator62);
org.junit.Assert.assertNotNull(charSequenceTranslator63);
org.junit.Assert.assertNotNull(unicodeEscaper66);
org.junit.Assert.assertNotNull(unicodeEscaper69);
org.junit.Assert.assertNotNull(unicodeEscaper72);
org.junit.Assert.assertEquals("'" + str74 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str74, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper77);
org.junit.Assert.assertEquals("'" + str79 + "' != '" + "hi!" + "'", str79, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper82);
org.junit.Assert.assertTrue("'" + int86 + "' != '" + 0 + "'", int86 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper88);
org.junit.Assert.assertNotNull(unicodeEscaper92);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray93);
org.junit.Assert.assertNotNull(charSequenceTranslator94);
org.junit.Assert.assertNotNull(charSequenceTranslator95);
org.junit.Assert.assertNotNull(charSequenceTranslator96);
org.junit.Assert.assertNotNull(charSequenceTranslator97);
org.junit.Assert.assertNotNull(charSequenceTranslator98);
}
@Test
public void test2370() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2370");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, (int) (byte) 10);
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2371() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2371");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((-1), (int) (byte) 1);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (short) 100, writer4);
java.lang.CharSequence charSequence6 = null;
java.lang.String str7 = unicodeEscaper2.translate(charSequence6);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertNull(str7);
}
@Test
public void test2372() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2372");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) 'a');
java.io.Writer writer3 = null;
boolean boolean4 = unicodeEscaper1.translate((int) '4', writer3);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper9 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str14 = unicodeEscaper12.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str19 = unicodeEscaper17.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer25 = null;
int int26 = unicodeEscaper22.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer25);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper29 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray33 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper22, unicodeEscaper28, unicodeEscaper29, unicodeEscaper32 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator34 = unicodeEscaper17.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator35 = unicodeEscaper12.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator36 = unicodeEscaper9.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator37 = unicodeEscaper7.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator38 = unicodeEscaper1.with(charSequenceTranslatorArray33);
java.lang.Class<?> wildcardClass39 = unicodeEscaper1.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertTrue("'" + boolean4 + "' != '" + false + "'", boolean4 == false);
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertNotNull(unicodeEscaper9);
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertEquals("'" + str14 + "' != '" + "hi!" + "'", str14, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertEquals("'" + str19 + "' != '" + "hi!" + "'", str19, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertTrue("'" + int26 + "' != '" + 0 + "'", int26 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(unicodeEscaper32);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray33);
org.junit.Assert.assertNotNull(charSequenceTranslator34);
org.junit.Assert.assertNotNull(charSequenceTranslator35);
org.junit.Assert.assertNotNull(charSequenceTranslator36);
org.junit.Assert.assertNotNull(charSequenceTranslator37);
org.junit.Assert.assertNotNull(charSequenceTranslator38);
org.junit.Assert.assertNotNull(wildcardClass39);
}
@Test
public void test2373() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2373");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, (int) ' ');
java.lang.Class<?> wildcardClass3 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(wildcardClass3);
}
@Test
public void test2374() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2374");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer10 = null;
int int11 = unicodeEscaper7.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray18 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper7, unicodeEscaper13, unicodeEscaper14, unicodeEscaper17 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator19 = unicodeEscaper2.with(charSequenceTranslatorArray18);
java.io.Writer writer22 = null;
int int23 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750036\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750034", (int) '#', writer22);
java.io.Writer writer25 = null;
boolean boolean26 = unicodeEscaper2.translate((int) (short) -1, writer25);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "hi!" + "'", str4, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertTrue("'" + int11 + "' != '" + 0 + "'", int11 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray18);
org.junit.Assert.assertNotNull(charSequenceTranslator19);
org.junit.Assert.assertTrue("'" + int23 + "' != '" + 0 + "'", int23 == 0);
org.junit.Assert.assertTrue("'" + boolean26 + "' != '" + false + "'", boolean26 == false);
}
@Test
public void test2375() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2375");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) -1, (int) (byte) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(1, (-1));
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer15 = null;
boolean boolean16 = unicodeEscaper13.translate((int) (short) 0, writer15);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray20 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper13, unicodeEscaper17, unicodeEscaper19 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator21 = unicodeEscaper10.with(charSequenceTranslatorArray20);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator22 = unicodeEscaper8.with(charSequenceTranslatorArray20);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str30 = unicodeEscaper28.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper33 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer36 = null;
int int37 = unicodeEscaper33.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer36);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper39 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper43 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray44 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper33, unicodeEscaper39, unicodeEscaper40, unicodeEscaper43 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator45 = unicodeEscaper28.with(charSequenceTranslatorArray44);
java.lang.String str47 = unicodeEscaper28.translate((java.lang.CharSequence) "");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper50 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str52 = unicodeEscaper50.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper55 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str57 = unicodeEscaper55.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper60 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer63 = null;
int int64 = unicodeEscaper60.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer63);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper66 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper67 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper70 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray71 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper60, unicodeEscaper66, unicodeEscaper67, unicodeEscaper70 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator72 = unicodeEscaper55.with(charSequenceTranslatorArray71);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator73 = unicodeEscaper50.with(charSequenceTranslatorArray71);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper75 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper78 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer80 = null;
boolean boolean81 = unicodeEscaper78.translate((int) (short) 0, writer80);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper82 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper84 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray85 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper78, unicodeEscaper82, unicodeEscaper84 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator86 = unicodeEscaper75.with(charSequenceTranslatorArray85);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator87 = charSequenceTranslator73.with(charSequenceTranslatorArray85);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator88 = unicodeEscaper28.with(charSequenceTranslatorArray85);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator89 = unicodeEscaper25.with(charSequenceTranslatorArray85);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator90 = charSequenceTranslator22.with(charSequenceTranslatorArray85);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator91 = unicodeEscaper5.with(charSequenceTranslatorArray85);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator92 = unicodeEscaper2.with(charSequenceTranslatorArray85);
java.lang.Class<?> wildcardClass93 = charSequenceTranslator92.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertTrue("'" + boolean16 + "' != '" + false + "'", boolean16 == false);
org.junit.Assert.assertNotNull(unicodeEscaper19);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray20);
org.junit.Assert.assertNotNull(charSequenceTranslator21);
org.junit.Assert.assertNotNull(charSequenceTranslator22);
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertEquals("'" + str30 + "' != '" + "hi!" + "'", str30, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper33);
org.junit.Assert.assertTrue("'" + int37 + "' != '" + 0 + "'", int37 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper39);
org.junit.Assert.assertNotNull(unicodeEscaper43);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray44);
org.junit.Assert.assertNotNull(charSequenceTranslator45);
org.junit.Assert.assertEquals("'" + str47 + "' != '" + "" + "'", str47, "");
org.junit.Assert.assertNotNull(unicodeEscaper50);
org.junit.Assert.assertEquals("'" + str52 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str52, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper55);
org.junit.Assert.assertEquals("'" + str57 + "' != '" + "hi!" + "'", str57, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper60);
org.junit.Assert.assertTrue("'" + int64 + "' != '" + 0 + "'", int64 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper66);
org.junit.Assert.assertNotNull(unicodeEscaper70);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray71);
org.junit.Assert.assertNotNull(charSequenceTranslator72);
org.junit.Assert.assertNotNull(charSequenceTranslator73);
org.junit.Assert.assertNotNull(unicodeEscaper75);
org.junit.Assert.assertNotNull(unicodeEscaper78);
org.junit.Assert.assertTrue("'" + boolean81 + "' != '" + false + "'", boolean81 == false);
org.junit.Assert.assertNotNull(unicodeEscaper84);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray85);
org.junit.Assert.assertNotNull(charSequenceTranslator86);
org.junit.Assert.assertNotNull(charSequenceTranslator87);
org.junit.Assert.assertNotNull(charSequenceTranslator88);
org.junit.Assert.assertNotNull(charSequenceTranslator89);
org.junit.Assert.assertNotNull(charSequenceTranslator90);
org.junit.Assert.assertNotNull(charSequenceTranslator91);
org.junit.Assert.assertNotNull(charSequenceTranslator92);
org.junit.Assert.assertNotNull(wildcardClass93);
}
@Test
public void test2376() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2376");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 10, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper4 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer9 = null;
boolean boolean10 = unicodeEscaper7.translate((int) (short) 0, writer9);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray14 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper7, unicodeEscaper11, unicodeEscaper13 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator15 = unicodeEscaper4.with(charSequenceTranslatorArray14);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator16 = unicodeEscaper2.with(charSequenceTranslatorArray14);
java.io.Writer writer19 = null;
int int20 = unicodeEscaper2.translate((java.lang.CharSequence) "FFFFFFFF", (int) (short) 1, writer19);
java.io.Writer writer23 = null;
int int24 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036", (int) (byte) 0, writer23);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 0, (-1));
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 1, (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper33 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str35 = unicodeEscaper33.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper38 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str40 = unicodeEscaper38.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper43 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer46 = null;
int int47 = unicodeEscaper43.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer46);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper49 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper50 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper53 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray54 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper43, unicodeEscaper49, unicodeEscaper50, unicodeEscaper53 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator55 = unicodeEscaper38.with(charSequenceTranslatorArray54);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator56 = unicodeEscaper33.with(charSequenceTranslatorArray54);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator57 = unicodeEscaper30.with(charSequenceTranslatorArray54);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator58 = unicodeEscaper27.with(charSequenceTranslatorArray54);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator59 = unicodeEscaper2.with(charSequenceTranslatorArray54);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper4);
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertTrue("'" + boolean10 + "' != '" + false + "'", boolean10 == false);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray14);
org.junit.Assert.assertNotNull(charSequenceTranslator15);
org.junit.Assert.assertNotNull(charSequenceTranslator16);
org.junit.Assert.assertTrue("'" + int20 + "' != '" + 0 + "'", int20 == 0);
org.junit.Assert.assertTrue("'" + int24 + "' != '" + 0 + "'", int24 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertNotNull(unicodeEscaper33);
org.junit.Assert.assertEquals("'" + str35 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str35, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper38);
org.junit.Assert.assertEquals("'" + str40 + "' != '" + "hi!" + "'", str40, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper43);
org.junit.Assert.assertTrue("'" + int47 + "' != '" + 0 + "'", int47 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper49);
org.junit.Assert.assertNotNull(unicodeEscaper53);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray54);
org.junit.Assert.assertNotNull(charSequenceTranslator55);
org.junit.Assert.assertNotNull(charSequenceTranslator56);
org.junit.Assert.assertNotNull(charSequenceTranslator57);
org.junit.Assert.assertNotNull(charSequenceTranslator58);
org.junit.Assert.assertNotNull(charSequenceTranslator59);
}
@Test
public void test2377() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2377");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, 1);
java.io.Writer writer8 = null;
int int9 = unicodeEscaper5.translate((java.lang.CharSequence) "61", (int) (short) 0, writer8);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str17 = unicodeEscaper15.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str22 = unicodeEscaper20.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer28 = null;
int int29 = unicodeEscaper25.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer28);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray36 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper25, unicodeEscaper31, unicodeEscaper32, unicodeEscaper35 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator37 = unicodeEscaper20.with(charSequenceTranslatorArray36);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator38 = unicodeEscaper15.with(charSequenceTranslatorArray36);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator39 = unicodeEscaper12.with(charSequenceTranslatorArray36);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator40 = unicodeEscaper5.with(charSequenceTranslatorArray36);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator41 = unicodeEscaper2.with(charSequenceTranslatorArray36);
java.io.Writer writer44 = null;
// The following exception was thrown during execution in test generation
try {
int int45 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0038\\u005C\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0039\\u005C\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0032\\u0031", (int) (byte) 0, writer44);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertTrue("'" + int9 + "' != '" + 0 + "'", int9 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertEquals("'" + str17 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str17, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertEquals("'" + str22 + "' != '" + "hi!" + "'", str22, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertTrue("'" + int29 + "' != '" + 0 + "'", int29 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertNotNull(unicodeEscaper35);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray36);
org.junit.Assert.assertNotNull(charSequenceTranslator37);
org.junit.Assert.assertNotNull(charSequenceTranslator38);
org.junit.Assert.assertNotNull(charSequenceTranslator39);
org.junit.Assert.assertNotNull(charSequenceTranslator40);
org.junit.Assert.assertNotNull(charSequenceTranslator41);
}
@Test
public void test2378() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2378");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '#', (int) (short) 100);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((-1), writer4);
java.lang.Class<?> wildcardClass6 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertNotNull(wildcardClass6);
}
@Test
public void test2379() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2379");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 10, (int) ' ');
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750037\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030", (int) (byte) 0, writer5);
java.io.Writer writer8 = null;
boolean boolean9 = unicodeEscaper2.translate(0, writer8);
java.io.Writer writer11 = null;
boolean boolean12 = unicodeEscaper2.translate((int) 'a', writer11);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
org.junit.Assert.assertTrue("'" + boolean9 + "' != '" + false + "'", boolean9 == false);
org.junit.Assert.assertTrue("'" + boolean12 + "' != '" + false + "'", boolean12 == false);
}
@Test
public void test2380() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2380");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, (int) (byte) -1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(10, 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) '4', (int) (byte) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str13 = unicodeEscaper11.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str18 = unicodeEscaper16.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer24 = null;
int int25 = unicodeEscaper21.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer24);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray32 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper21, unicodeEscaper27, unicodeEscaper28, unicodeEscaper31 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper16.with(charSequenceTranslatorArray32);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator34 = unicodeEscaper11.with(charSequenceTranslatorArray32);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer40 = null;
int int41 = unicodeEscaper37.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer40);
java.io.Writer writer43 = null;
boolean boolean44 = unicodeEscaper37.translate((int) (byte) -1, writer43);
java.lang.String str46 = unicodeEscaper37.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper49 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str51 = unicodeEscaper49.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray52 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper37, unicodeEscaper49 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator53 = unicodeEscaper11.with(charSequenceTranslatorArray52);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator54 = unicodeEscaper8.with(charSequenceTranslatorArray52);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator55 = unicodeEscaper5.with(charSequenceTranslatorArray52);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator56 = unicodeEscaper2.with(charSequenceTranslatorArray52);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper59 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer61 = null;
boolean boolean62 = unicodeEscaper59.translate((int) (byte) 100, writer61);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper65 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str67 = unicodeEscaper65.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper70 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer73 = null;
int int74 = unicodeEscaper70.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer73);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper76 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper77 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper80 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray81 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper70, unicodeEscaper76, unicodeEscaper77, unicodeEscaper80 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator82 = unicodeEscaper65.with(charSequenceTranslatorArray81);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator83 = unicodeEscaper59.with(charSequenceTranslatorArray81);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator84 = charSequenceTranslator56.with(charSequenceTranslatorArray81);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertEquals("'" + str13 + "' != '" + "hi!" + "'", str13, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertEquals("'" + str18 + "' != '" + "hi!" + "'", str18, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertTrue("'" + int25 + "' != '" + 0 + "'", int25 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
org.junit.Assert.assertNotNull(charSequenceTranslator34);
org.junit.Assert.assertNotNull(unicodeEscaper37);
org.junit.Assert.assertTrue("'" + int41 + "' != '" + 0 + "'", int41 == 0);
org.junit.Assert.assertTrue("'" + boolean44 + "' != '" + false + "'", boolean44 == false);
org.junit.Assert.assertEquals("'" + str46 + "' != '" + "0" + "'", str46, "0");
org.junit.Assert.assertNotNull(unicodeEscaper49);
org.junit.Assert.assertEquals("'" + str51 + "' != '" + "hi!" + "'", str51, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray52);
org.junit.Assert.assertNotNull(charSequenceTranslator53);
org.junit.Assert.assertNotNull(charSequenceTranslator54);
org.junit.Assert.assertNotNull(charSequenceTranslator55);
org.junit.Assert.assertNotNull(charSequenceTranslator56);
org.junit.Assert.assertNotNull(unicodeEscaper59);
org.junit.Assert.assertTrue("'" + boolean62 + "' != '" + false + "'", boolean62 == false);
org.junit.Assert.assertNotNull(unicodeEscaper65);
org.junit.Assert.assertEquals("'" + str67 + "' != '" + "hi!" + "'", str67, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper70);
org.junit.Assert.assertTrue("'" + int74 + "' != '" + 0 + "'", int74 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper76);
org.junit.Assert.assertNotNull(unicodeEscaper80);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray81);
org.junit.Assert.assertNotNull(charSequenceTranslator82);
org.junit.Assert.assertNotNull(charSequenceTranslator83);
org.junit.Assert.assertNotNull(charSequenceTranslator84);
}
@Test
public void test2381() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2381");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 0, (int) '4');
java.lang.Class<?> wildcardClass3 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(wildcardClass3);
}
@Test
public void test2382() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2382");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 0, (int) '#');
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (short) 100, writer4);
java.io.Writer writer7 = null;
boolean boolean8 = unicodeEscaper2.translate(100, writer7);
java.lang.Class<?> wildcardClass9 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertTrue("'" + boolean8 + "' != '" + false + "'", boolean8 == false);
org.junit.Assert.assertNotNull(wildcardClass9);
}
@Test
public void test2383() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2383");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(1, (int) (short) -1);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (short) 10, writer4);
java.io.Writer writer7 = null;
boolean boolean8 = unicodeEscaper2.translate((int) (byte) 100, writer7);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertTrue("'" + boolean8 + "' != '" + false + "'", boolean8 == false);
}
@Test
public void test2384() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2384");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '#', (int) (byte) 10);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) ' ', writer4);
java.io.Writer writer7 = null;
boolean boolean8 = unicodeEscaper2.translate((int) (byte) 100, writer7);
java.io.Writer writer11 = null;
int int12 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0032\\u0033", 0, writer11);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertTrue("'" + boolean8 + "' != '" + false + "'", boolean8 == false);
org.junit.Assert.assertTrue("'" + int12 + "' != '" + 0 + "'", int12 == 0);
}
@Test
public void test2385() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2385");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(0, (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(0, (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 100);
java.io.Writer writer12 = null;
boolean boolean13 = unicodeEscaper10.translate((int) (short) 0, writer12);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str18 = unicodeEscaper16.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer24 = null;
int int25 = unicodeEscaper21.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer24);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray32 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper21, unicodeEscaper27, unicodeEscaper28, unicodeEscaper31 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper16.with(charSequenceTranslatorArray32);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str38 = unicodeEscaper36.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str43 = unicodeEscaper41.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper46 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer49 = null;
int int50 = unicodeEscaper46.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer49);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper52 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper53 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper56 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray57 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper46, unicodeEscaper52, unicodeEscaper53, unicodeEscaper56 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator58 = unicodeEscaper41.with(charSequenceTranslatorArray57);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator59 = unicodeEscaper36.with(charSequenceTranslatorArray57);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator60 = charSequenceTranslator33.with(charSequenceTranslatorArray57);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator61 = unicodeEscaper10.with(charSequenceTranslatorArray57);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator62 = unicodeEscaper8.with(charSequenceTranslatorArray57);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper65 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, 1);
java.lang.String str67 = unicodeEscaper65.translate((java.lang.CharSequence) "FFFFFFFF");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper70 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str72 = unicodeEscaper70.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper75 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str77 = unicodeEscaper75.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper80 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer83 = null;
int int84 = unicodeEscaper80.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer83);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper86 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper87 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper90 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray91 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper80, unicodeEscaper86, unicodeEscaper87, unicodeEscaper90 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator92 = unicodeEscaper75.with(charSequenceTranslatorArray91);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator93 = unicodeEscaper70.with(charSequenceTranslatorArray91);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator94 = unicodeEscaper65.with(charSequenceTranslatorArray91);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator95 = unicodeEscaper8.with(charSequenceTranslatorArray91);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator96 = unicodeEscaper5.with(charSequenceTranslatorArray91);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator97 = unicodeEscaper2.with(charSequenceTranslatorArray91);
java.lang.String str99 = unicodeEscaper2.translate((java.lang.CharSequence) "20");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertTrue("'" + boolean13 + "' != '" + false + "'", boolean13 == false);
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertEquals("'" + str18 + "' != '" + "hi!" + "'", str18, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertTrue("'" + int25 + "' != '" + 0 + "'", int25 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
org.junit.Assert.assertNotNull(unicodeEscaper36);
org.junit.Assert.assertEquals("'" + str38 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str38, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper41);
org.junit.Assert.assertEquals("'" + str43 + "' != '" + "hi!" + "'", str43, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper46);
org.junit.Assert.assertTrue("'" + int50 + "' != '" + 0 + "'", int50 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper52);
org.junit.Assert.assertNotNull(unicodeEscaper56);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray57);
org.junit.Assert.assertNotNull(charSequenceTranslator58);
org.junit.Assert.assertNotNull(charSequenceTranslator59);
org.junit.Assert.assertNotNull(charSequenceTranslator60);
org.junit.Assert.assertNotNull(charSequenceTranslator61);
org.junit.Assert.assertNotNull(charSequenceTranslator62);
org.junit.Assert.assertNotNull(unicodeEscaper65);
org.junit.Assert.assertEquals("'" + str67 + "' != '" + "FFFFFFFF" + "'", str67, "FFFFFFFF");
org.junit.Assert.assertNotNull(unicodeEscaper70);
org.junit.Assert.assertEquals("'" + str72 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str72, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper75);
org.junit.Assert.assertEquals("'" + str77 + "' != '" + "hi!" + "'", str77, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper80);
org.junit.Assert.assertTrue("'" + int84 + "' != '" + 0 + "'", int84 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper86);
org.junit.Assert.assertNotNull(unicodeEscaper90);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray91);
org.junit.Assert.assertNotNull(charSequenceTranslator92);
org.junit.Assert.assertNotNull(charSequenceTranslator93);
org.junit.Assert.assertNotNull(charSequenceTranslator94);
org.junit.Assert.assertNotNull(charSequenceTranslator95);
org.junit.Assert.assertNotNull(charSequenceTranslator96);
org.junit.Assert.assertNotNull(charSequenceTranslator97);
org.junit.Assert.assertEquals("'" + str99 + "' != '" + "20" + "'", str99, "20");
}
@Test
public void test2386() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2386");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(10, (int) '#');
java.io.Writer writer4 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030", writer4);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2387() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2387");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(1, (int) (byte) 100);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "23");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "23" + "'", str4, "23");
}
@Test
public void test2388() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2388");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str9 = unicodeEscaper7.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer15 = null;
int int16 = unicodeEscaper12.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer15);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray23 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper12, unicodeEscaper18, unicodeEscaper19, unicodeEscaper22 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator24 = unicodeEscaper7.with(charSequenceTranslatorArray23);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator25 = unicodeEscaper2.with(charSequenceTranslatorArray23);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer31 = null;
int int32 = unicodeEscaper28.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer31);
java.io.Writer writer34 = null;
boolean boolean35 = unicodeEscaper28.translate((int) (byte) -1, writer34);
java.lang.String str37 = unicodeEscaper28.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str42 = unicodeEscaper40.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray43 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper28, unicodeEscaper40 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper2.with(charSequenceTranslatorArray43);
java.lang.String str46 = unicodeEscaper2.translate((java.lang.CharSequence) "");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper49 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper52 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str54 = unicodeEscaper52.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str59 = unicodeEscaper57.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper62 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer65 = null;
int int66 = unicodeEscaper62.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer65);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper68 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper69 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper72 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray73 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper62, unicodeEscaper68, unicodeEscaper69, unicodeEscaper72 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator74 = unicodeEscaper57.with(charSequenceTranslatorArray73);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator75 = unicodeEscaper52.with(charSequenceTranslatorArray73);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator76 = unicodeEscaper49.with(charSequenceTranslatorArray73);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator77 = unicodeEscaper2.with(charSequenceTranslatorArray73);
java.io.Writer writer80 = null;
int int81 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0036\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0034", 0, writer80);
java.lang.Class<?> wildcardClass82 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "hi!" + "'", str4, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertEquals("'" + str9 + "' != '" + "hi!" + "'", str9, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertTrue("'" + int16 + "' != '" + 0 + "'", int16 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray23);
org.junit.Assert.assertNotNull(charSequenceTranslator24);
org.junit.Assert.assertNotNull(charSequenceTranslator25);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertTrue("'" + int32 + "' != '" + 0 + "'", int32 == 0);
org.junit.Assert.assertTrue("'" + boolean35 + "' != '" + false + "'", boolean35 == false);
org.junit.Assert.assertEquals("'" + str37 + "' != '" + "0" + "'", str37, "0");
org.junit.Assert.assertNotNull(unicodeEscaper40);
org.junit.Assert.assertEquals("'" + str42 + "' != '" + "hi!" + "'", str42, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertEquals("'" + str46 + "' != '" + "" + "'", str46, "");
org.junit.Assert.assertNotNull(unicodeEscaper49);
org.junit.Assert.assertNotNull(unicodeEscaper52);
org.junit.Assert.assertEquals("'" + str54 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str54, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper57);
org.junit.Assert.assertEquals("'" + str59 + "' != '" + "hi!" + "'", str59, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper62);
org.junit.Assert.assertTrue("'" + int66 + "' != '" + 0 + "'", int66 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper68);
org.junit.Assert.assertNotNull(unicodeEscaper72);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray73);
org.junit.Assert.assertNotNull(charSequenceTranslator74);
org.junit.Assert.assertNotNull(charSequenceTranslator75);
org.junit.Assert.assertNotNull(charSequenceTranslator76);
org.junit.Assert.assertNotNull(charSequenceTranslator77);
org.junit.Assert.assertTrue("'" + int81 + "' != '" + 0 + "'", int81 == 0);
org.junit.Assert.assertNotNull(wildcardClass82);
}
@Test
public void test2389() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2389");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str12 = unicodeEscaper10.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer18 = null;
int int19 = unicodeEscaper15.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer18);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray26 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper15, unicodeEscaper21, unicodeEscaper22, unicodeEscaper25 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator27 = unicodeEscaper10.with(charSequenceTranslatorArray26);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator28 = unicodeEscaper5.with(charSequenceTranslatorArray26);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator29 = unicodeEscaper2.with(charSequenceTranslatorArray26);
java.lang.String str31 = charSequenceTranslator29.translate((java.lang.CharSequence) "23");
java.lang.Class<?> wildcardClass32 = charSequenceTranslator29.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str7, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertEquals("'" + str12 + "' != '" + "hi!" + "'", str12, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertTrue("'" + int19 + "' != '" + 0 + "'", int19 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray26);
org.junit.Assert.assertNotNull(charSequenceTranslator27);
org.junit.Assert.assertNotNull(charSequenceTranslator28);
org.junit.Assert.assertNotNull(charSequenceTranslator29);
org.junit.Assert.assertEquals("'" + str31 + "' != '" + "\\u0032\\u0033" + "'", str31, "\\u0032\\u0033");
org.junit.Assert.assertNotNull(wildcardClass32);
}
@Test
public void test2390() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2390");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(10, (int) (short) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, 1);
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "FFFFFFFF");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str12 = unicodeEscaper10.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str17 = unicodeEscaper15.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer23 = null;
int int24 = unicodeEscaper20.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer23);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray31 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper20, unicodeEscaper26, unicodeEscaper27, unicodeEscaper30 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator32 = unicodeEscaper15.with(charSequenceTranslatorArray31);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper10.with(charSequenceTranslatorArray31);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator34 = unicodeEscaper5.with(charSequenceTranslatorArray31);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator35 = unicodeEscaper2.with(charSequenceTranslatorArray31);
java.lang.CharSequence charSequence36 = null;
java.lang.String str37 = charSequenceTranslator35.translate(charSequence36);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "FFFFFFFF" + "'", str7, "FFFFFFFF");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertEquals("'" + str12 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str12, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertEquals("'" + str17 + "' != '" + "hi!" + "'", str17, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertTrue("'" + int24 + "' != '" + 0 + "'", int24 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper26);
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray31);
org.junit.Assert.assertNotNull(charSequenceTranslator32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
org.junit.Assert.assertNotNull(charSequenceTranslator34);
org.junit.Assert.assertNotNull(charSequenceTranslator35);
org.junit.Assert.assertNull(str37);
}
@Test
public void test2391() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2391");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((-1), (int) (byte) 10);
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030", 1, writer5);
java.io.Writer writer9 = null;
int int10 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030", (int) (short) 0, writer9);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
org.junit.Assert.assertTrue("'" + int10 + "' != '" + 0 + "'", int10 == 0);
}
@Test
public void test2392() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2392");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) -1, (int) (short) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (byte) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str13 = unicodeEscaper11.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str18 = unicodeEscaper16.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer24 = null;
int int25 = unicodeEscaper21.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer24);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray32 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper21, unicodeEscaper27, unicodeEscaper28, unicodeEscaper31 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper16.with(charSequenceTranslatorArray32);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator34 = unicodeEscaper11.with(charSequenceTranslatorArray32);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator35 = unicodeEscaper8.with(charSequenceTranslatorArray32);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper38 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str40 = unicodeEscaper38.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper43 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer46 = null;
int int47 = unicodeEscaper43.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer46);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper49 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper50 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper53 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray54 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper43, unicodeEscaper49, unicodeEscaper50, unicodeEscaper53 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator55 = unicodeEscaper38.with(charSequenceTranslatorArray54);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper58 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str60 = unicodeEscaper58.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper63 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str65 = unicodeEscaper63.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper68 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer71 = null;
int int72 = unicodeEscaper68.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer71);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper74 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper75 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper78 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray79 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper68, unicodeEscaper74, unicodeEscaper75, unicodeEscaper78 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator80 = unicodeEscaper63.with(charSequenceTranslatorArray79);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator81 = unicodeEscaper58.with(charSequenceTranslatorArray79);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator82 = charSequenceTranslator55.with(charSequenceTranslatorArray79);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator83 = unicodeEscaper8.with(charSequenceTranslatorArray79);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator84 = unicodeEscaper5.with(charSequenceTranslatorArray79);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator85 = unicodeEscaper2.with(charSequenceTranslatorArray79);
java.io.Writer writer88 = null;
// The following exception was thrown during execution in test generation
try {
int int89 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u00750068\\\\u00750069\\\\u00750021", (int) (short) -1, writer88);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: -1");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertEquals("'" + str13 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str13, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertEquals("'" + str18 + "' != '" + "hi!" + "'", str18, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertTrue("'" + int25 + "' != '" + 0 + "'", int25 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
org.junit.Assert.assertNotNull(charSequenceTranslator34);
org.junit.Assert.assertNotNull(charSequenceTranslator35);
org.junit.Assert.assertNotNull(unicodeEscaper38);
org.junit.Assert.assertEquals("'" + str40 + "' != '" + "hi!" + "'", str40, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper43);
org.junit.Assert.assertTrue("'" + int47 + "' != '" + 0 + "'", int47 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper49);
org.junit.Assert.assertNotNull(unicodeEscaper53);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray54);
org.junit.Assert.assertNotNull(charSequenceTranslator55);
org.junit.Assert.assertNotNull(unicodeEscaper58);
org.junit.Assert.assertEquals("'" + str60 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str60, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper63);
org.junit.Assert.assertEquals("'" + str65 + "' != '" + "hi!" + "'", str65, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper68);
org.junit.Assert.assertTrue("'" + int72 + "' != '" + 0 + "'", int72 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper74);
org.junit.Assert.assertNotNull(unicodeEscaper78);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray79);
org.junit.Assert.assertNotNull(charSequenceTranslator80);
org.junit.Assert.assertNotNull(charSequenceTranslator81);
org.junit.Assert.assertNotNull(charSequenceTranslator82);
org.junit.Assert.assertNotNull(charSequenceTranslator83);
org.junit.Assert.assertNotNull(charSequenceTranslator84);
org.junit.Assert.assertNotNull(charSequenceTranslator85);
}
@Test
public void test2393() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2393");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 0);
java.io.Writer writer4 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean5 = unicodeEscaper2.translate((int) (byte) -1, writer4);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2394() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2394");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) 0);
java.io.Writer writer3 = null;
boolean boolean4 = unicodeEscaper1.translate(1, writer3);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper6 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (short) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper9 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 100, (int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str16 = unicodeEscaper14.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str21 = unicodeEscaper19.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer27 = null;
int int28 = unicodeEscaper24.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer27);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper34 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray35 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper24, unicodeEscaper30, unicodeEscaper31, unicodeEscaper34 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator36 = unicodeEscaper19.with(charSequenceTranslatorArray35);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator37 = unicodeEscaper14.with(charSequenceTranslatorArray35);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator38 = unicodeEscaper11.with(charSequenceTranslatorArray35);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(10, 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper44 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper46 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray47 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper11, unicodeEscaper41, unicodeEscaper44, unicodeEscaper46 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator48 = unicodeEscaper9.with(charSequenceTranslatorArray47);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator49 = unicodeEscaper6.with(charSequenceTranslatorArray47);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator50 = unicodeEscaper1.with(charSequenceTranslatorArray47);
java.lang.CharSequence charSequence51 = null;
java.lang.String str52 = unicodeEscaper1.translate(charSequence51);
java.io.Writer writer55 = null;
// The following exception was thrown during execution in test generation
try {
int int56 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031", (int) (byte) 100, writer55);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: 100");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertTrue("'" + boolean4 + "' != '" + false + "'", boolean4 == false);
org.junit.Assert.assertNotNull(unicodeEscaper6);
org.junit.Assert.assertNotNull(unicodeEscaper9);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertNotNull(unicodeEscaper14);
org.junit.Assert.assertEquals("'" + str16 + "' != '" + "hi!" + "'", str16, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper19);
org.junit.Assert.assertEquals("'" + str21 + "' != '" + "hi!" + "'", str21, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertTrue("'" + int28 + "' != '" + 0 + "'", int28 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertNotNull(unicodeEscaper34);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray35);
org.junit.Assert.assertNotNull(charSequenceTranslator36);
org.junit.Assert.assertNotNull(charSequenceTranslator37);
org.junit.Assert.assertNotNull(charSequenceTranslator38);
org.junit.Assert.assertNotNull(unicodeEscaper41);
org.junit.Assert.assertNotNull(unicodeEscaper44);
org.junit.Assert.assertNotNull(unicodeEscaper46);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray47);
org.junit.Assert.assertNotNull(charSequenceTranslator48);
org.junit.Assert.assertNotNull(charSequenceTranslator49);
org.junit.Assert.assertNotNull(charSequenceTranslator50);
org.junit.Assert.assertNull(str52);
}
@Test
public void test2395() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2395");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 100, (int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper9 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str14 = unicodeEscaper12.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str19 = unicodeEscaper17.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer25 = null;
int int26 = unicodeEscaper22.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer25);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper29 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray33 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper22, unicodeEscaper28, unicodeEscaper29, unicodeEscaper32 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator34 = unicodeEscaper17.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator35 = unicodeEscaper12.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator36 = unicodeEscaper9.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper39 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(10, 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper42 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper44 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray45 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper9, unicodeEscaper39, unicodeEscaper42, unicodeEscaper44 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator46 = unicodeEscaper7.with(charSequenceTranslatorArray45);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator47 = unicodeEscaper2.with(charSequenceTranslatorArray45);
java.io.Writer writer50 = null;
// The following exception was thrown during execution in test generation
try {
int int51 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0041", 10, writer50);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: 10");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str4, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertNotNull(unicodeEscaper9);
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertEquals("'" + str14 + "' != '" + "hi!" + "'", str14, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertEquals("'" + str19 + "' != '" + "hi!" + "'", str19, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertTrue("'" + int26 + "' != '" + 0 + "'", int26 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(unicodeEscaper32);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray33);
org.junit.Assert.assertNotNull(charSequenceTranslator34);
org.junit.Assert.assertNotNull(charSequenceTranslator35);
org.junit.Assert.assertNotNull(charSequenceTranslator36);
org.junit.Assert.assertNotNull(unicodeEscaper39);
org.junit.Assert.assertNotNull(unicodeEscaper42);
org.junit.Assert.assertNotNull(unicodeEscaper44);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray45);
org.junit.Assert.assertNotNull(charSequenceTranslator46);
org.junit.Assert.assertNotNull(charSequenceTranslator47);
}
@Test
public void test2396() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2396");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper4 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 100, (int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper6 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper9 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str11 = unicodeEscaper9.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str16 = unicodeEscaper14.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer22 = null;
int int23 = unicodeEscaper19.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer22);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper29 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray30 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper19, unicodeEscaper25, unicodeEscaper26, unicodeEscaper29 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper14.with(charSequenceTranslatorArray30);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator32 = unicodeEscaper9.with(charSequenceTranslatorArray30);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper6.with(charSequenceTranslatorArray30);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(10, 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper39 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray42 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper6, unicodeEscaper36, unicodeEscaper39, unicodeEscaper41 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator43 = unicodeEscaper4.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper1.with(charSequenceTranslatorArray42);
java.lang.String str46 = unicodeEscaper1.translate((java.lang.CharSequence) "6\\u0031");
java.lang.String str48 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u0041");
java.io.Writer writer51 = null;
int int52 = unicodeEscaper1.translate((java.lang.CharSequence) "\\\\u\\u0030\\u003075\\u0030\\u00305C\\\\u\\u0030\\u003075\\u0030\\u003075\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0030\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0030\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0033\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0032\\\\u\\u0030\\u003075\\u0030\\u00305C\\\\u\\u0030\\u003075\\u0030\\u003075\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0030\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0030\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0033\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0033", (int) (byte) 0, writer51);
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertNotNull(unicodeEscaper4);
org.junit.Assert.assertNotNull(unicodeEscaper6);
org.junit.Assert.assertNotNull(unicodeEscaper9);
org.junit.Assert.assertEquals("'" + str11 + "' != '" + "hi!" + "'", str11, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper14);
org.junit.Assert.assertEquals("'" + str16 + "' != '" + "hi!" + "'", str16, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper19);
org.junit.Assert.assertTrue("'" + int23 + "' != '" + 0 + "'", int23 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertNotNull(unicodeEscaper29);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
org.junit.Assert.assertNotNull(charSequenceTranslator32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
org.junit.Assert.assertNotNull(unicodeEscaper36);
org.junit.Assert.assertNotNull(unicodeEscaper39);
org.junit.Assert.assertNotNull(unicodeEscaper41);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray42);
org.junit.Assert.assertNotNull(charSequenceTranslator43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertEquals("'" + str46 + "' != '" + "6\\\\u00750031" + "'", str46, "6\\\\u00750031");
org.junit.Assert.assertEquals("'" + str48 + "' != '" + "\\\\u00750041" + "'", str48, "\\\\u00750041");
org.junit.Assert.assertTrue("'" + int52 + "' != '" + 0 + "'", int52 == 0);
}
@Test
public void test2397() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2397");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) -1);
java.io.Writer writer3 = null;
boolean boolean4 = unicodeEscaper1.translate((int) '#', writer3);
java.lang.String str6 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper9 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str14 = unicodeEscaper12.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer20 = null;
int int21 = unicodeEscaper17.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer20);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper23 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray28 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper17, unicodeEscaper23, unicodeEscaper24, unicodeEscaper27 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator29 = unicodeEscaper12.with(charSequenceTranslatorArray28);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator30 = unicodeEscaper9.with(charSequenceTranslatorArray28);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper1.with(charSequenceTranslatorArray28);
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertTrue("'" + boolean4 + "' != '" + false + "'", boolean4 == false);
org.junit.Assert.assertEquals("'" + str6 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034" + "'", str6, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
org.junit.Assert.assertNotNull(unicodeEscaper9);
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertEquals("'" + str14 + "' != '" + "hi!" + "'", str14, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertTrue("'" + int21 + "' != '" + 0 + "'", int21 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper23);
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray28);
org.junit.Assert.assertNotNull(charSequenceTranslator29);
org.junit.Assert.assertNotNull(charSequenceTranslator30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
}
@Test
public void test2398() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2398");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (short) 1);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate(100, writer4);
java.io.Writer writer8 = null;
int int9 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030", (int) (short) 1, writer8);
java.io.Writer writer11 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean12 = unicodeEscaper2.translate((int) (short) 0, writer11);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertTrue("'" + int9 + "' != '" + 0 + "'", int9 == 0);
}
@Test
public void test2399() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2399");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) -1);
java.io.Writer writer3 = null;
boolean boolean4 = unicodeEscaper1.translate((int) '#', writer3);
java.lang.String str6 = unicodeEscaper1.translate((java.lang.CharSequence) "61");
java.io.Writer writer9 = null;
int int10 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0036\\u0038\\u005C\\u0075\\u0030\\u0030\\u0036\\u0039\\u005C\\u0075\\u0030\\u0030\\u0032\\u0031", 10, writer9);
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertTrue("'" + boolean4 + "' != '" + false + "'", boolean4 == false);
org.junit.Assert.assertEquals("'" + str6 + "' != '" + "61" + "'", str6, "61");
org.junit.Assert.assertTrue("'" + int10 + "' != '" + 0 + "'", int10 == 0);
}
@Test
public void test2400() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2400");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 100, (int) (short) 0);
java.io.Writer writer4 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\u0033\\u0034", writer4);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2401() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2401");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
java.lang.String str3 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u0030");
java.lang.String str5 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033");
java.io.Writer writer7 = null;
boolean boolean8 = unicodeEscaper1.translate((int) (byte) 0, writer7);
java.io.Writer writer10 = null;
boolean boolean11 = unicodeEscaper1.translate((int) (short) 0, writer10);
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertEquals("'" + str3 + "' != '" + "\\u0030" + "'", str3, "\\u0030");
org.junit.Assert.assertEquals("'" + str5 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033" + "'", str5, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033");
org.junit.Assert.assertTrue("'" + boolean8 + "' != '" + false + "'", boolean8 == false);
org.junit.Assert.assertTrue("'" + boolean11 + "' != '" + false + "'", boolean11 == false);
}
@Test
public void test2402() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2402");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) ' ');
java.io.Writer writer3 = null;
boolean boolean4 = unicodeEscaper1.translate((int) 'a', writer3);
java.io.Writer writer7 = null;
int int8 = unicodeEscaper1.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030", (int) (byte) 1, writer7);
java.lang.String str10 = unicodeEscaper1.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750036\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750034");
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertTrue("'" + boolean4 + "' != '" + false + "'", boolean4 == false);
org.junit.Assert.assertTrue("'" + int8 + "' != '" + 0 + "'", int8 == 0);
org.junit.Assert.assertEquals("'" + str10 + "' != '" + "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750036\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750034" + "'", str10, "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750036\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750034");
}
@Test
public void test2403() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2403");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, 10);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (byte) -1, writer4);
java.io.Writer writer8 = null;
int int9 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030", (int) (byte) 0, writer8);
java.lang.Class<?> wildcardClass10 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertTrue("'" + int9 + "' != '" + 0 + "'", int9 == 0);
org.junit.Assert.assertNotNull(wildcardClass10);
}
@Test
public void test2404() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2404");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(0, (int) (byte) 0);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) 'a', writer4);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 10, (int) 'a');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str13 = unicodeEscaper11.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str18 = unicodeEscaper16.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer24 = null;
int int25 = unicodeEscaper21.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer24);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray32 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper21, unicodeEscaper27, unicodeEscaper28, unicodeEscaper31 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper16.with(charSequenceTranslatorArray32);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator34 = unicodeEscaper11.with(charSequenceTranslatorArray32);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer40 = null;
int int41 = unicodeEscaper37.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer40);
java.io.Writer writer43 = null;
boolean boolean44 = unicodeEscaper37.translate((int) (byte) -1, writer43);
java.lang.String str46 = unicodeEscaper37.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper49 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str51 = unicodeEscaper49.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray52 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper37, unicodeEscaper49 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator53 = unicodeEscaper11.with(charSequenceTranslatorArray52);
java.lang.String str55 = unicodeEscaper11.translate((java.lang.CharSequence) "");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper58 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper61 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str63 = unicodeEscaper61.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper66 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str68 = unicodeEscaper66.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper71 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer74 = null;
int int75 = unicodeEscaper71.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer74);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper77 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper78 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper81 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray82 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper71, unicodeEscaper77, unicodeEscaper78, unicodeEscaper81 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator83 = unicodeEscaper66.with(charSequenceTranslatorArray82);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator84 = unicodeEscaper61.with(charSequenceTranslatorArray82);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator85 = unicodeEscaper58.with(charSequenceTranslatorArray82);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator86 = unicodeEscaper11.with(charSequenceTranslatorArray82);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator87 = unicodeEscaper8.with(charSequenceTranslatorArray82);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator88 = unicodeEscaper2.with(charSequenceTranslatorArray82);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertEquals("'" + str13 + "' != '" + "hi!" + "'", str13, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertEquals("'" + str18 + "' != '" + "hi!" + "'", str18, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertTrue("'" + int25 + "' != '" + 0 + "'", int25 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
org.junit.Assert.assertNotNull(charSequenceTranslator34);
org.junit.Assert.assertNotNull(unicodeEscaper37);
org.junit.Assert.assertTrue("'" + int41 + "' != '" + 0 + "'", int41 == 0);
org.junit.Assert.assertTrue("'" + boolean44 + "' != '" + false + "'", boolean44 == false);
org.junit.Assert.assertEquals("'" + str46 + "' != '" + "0" + "'", str46, "0");
org.junit.Assert.assertNotNull(unicodeEscaper49);
org.junit.Assert.assertEquals("'" + str51 + "' != '" + "hi!" + "'", str51, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray52);
org.junit.Assert.assertNotNull(charSequenceTranslator53);
org.junit.Assert.assertEquals("'" + str55 + "' != '" + "" + "'", str55, "");
org.junit.Assert.assertNotNull(unicodeEscaper58);
org.junit.Assert.assertNotNull(unicodeEscaper61);
org.junit.Assert.assertEquals("'" + str63 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str63, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper66);
org.junit.Assert.assertEquals("'" + str68 + "' != '" + "hi!" + "'", str68, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper71);
org.junit.Assert.assertTrue("'" + int75 + "' != '" + 0 + "'", int75 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper77);
org.junit.Assert.assertNotNull(unicodeEscaper81);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray82);
org.junit.Assert.assertNotNull(charSequenceTranslator83);
org.junit.Assert.assertNotNull(charSequenceTranslator84);
org.junit.Assert.assertNotNull(charSequenceTranslator85);
org.junit.Assert.assertNotNull(charSequenceTranslator86);
org.junit.Assert.assertNotNull(charSequenceTranslator87);
org.junit.Assert.assertNotNull(charSequenceTranslator88);
}
@Test
public void test2405() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2405");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, (int) 'a');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 10, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer12 = null;
boolean boolean13 = unicodeEscaper10.translate((int) (short) 0, writer12);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray17 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper10, unicodeEscaper14, unicodeEscaper16 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator18 = unicodeEscaper7.with(charSequenceTranslatorArray17);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator19 = unicodeEscaper5.with(charSequenceTranslatorArray17);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator20 = unicodeEscaper2.with(charSequenceTranslatorArray17);
java.io.Writer writer22 = null;
boolean boolean23 = unicodeEscaper2.translate((int) (byte) 10, writer22);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertTrue("'" + boolean13 + "' != '" + false + "'", boolean13 == false);
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray17);
org.junit.Assert.assertNotNull(charSequenceTranslator18);
org.junit.Assert.assertNotNull(charSequenceTranslator19);
org.junit.Assert.assertNotNull(charSequenceTranslator20);
org.junit.Assert.assertTrue("'" + boolean23 + "' != '" + false + "'", boolean23 == false);
}
@Test
public void test2406() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2406");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(10, 100);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (byte) 10, writer4);
java.io.Writer writer8 = null;
// The following exception was thrown during execution in test generation
try {
int int9 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0036\\u0031", (int) (byte) 1, writer8);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
}
@Test
public void test2407() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2407");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 0, (int) (byte) 10);
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2408() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2408");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) ' ');
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034" + "'", str4, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
}
@Test
public void test2409() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2409");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, (int) '#');
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str15 = unicodeEscaper13.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer21 = null;
int int22 = unicodeEscaper18.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer21);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray29 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper18, unicodeEscaper24, unicodeEscaper25, unicodeEscaper28 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator30 = unicodeEscaper13.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper10.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator32 = unicodeEscaper7.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper2.with(charSequenceTranslatorArray29);
java.lang.String str35 = unicodeEscaper2.translate((java.lang.CharSequence) "34");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "" + "'", str4, "");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertEquals("'" + str15 + "' != '" + "hi!" + "'", str15, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertTrue("'" + int22 + "' != '" + 0 + "'", int22 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray29);
org.junit.Assert.assertNotNull(charSequenceTranslator30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
org.junit.Assert.assertNotNull(charSequenceTranslator32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
org.junit.Assert.assertEquals("'" + str35 + "' != '" + "\\u0033\\u0034" + "'", str35, "\\u0033\\u0034");
}
@Test
public void test2410() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2410");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) -1);
java.io.Writer writer3 = null;
boolean boolean4 = unicodeEscaper1.translate((int) (byte) 0, writer3);
java.io.Writer writer6 = null;
boolean boolean7 = unicodeEscaper1.translate((int) (short) 0, writer6);
java.io.Writer writer9 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper1.translate((java.lang.CharSequence) "\\\\u00750036\\\\u00750031", writer9);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertTrue("'" + boolean4 + "' != '" + false + "'", boolean4 == false);
org.junit.Assert.assertTrue("'" + boolean7 + "' != '" + false + "'", boolean7 == false);
}
@Test
public void test2411() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2411");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) ' ');
java.io.Writer writer3 = null;
boolean boolean4 = unicodeEscaper1.translate((int) 'a', writer3);
java.io.Writer writer6 = null;
boolean boolean7 = unicodeEscaper1.translate(100, writer6);
java.lang.String str9 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u0032\\u0033");
java.lang.CharSequence charSequence10 = null;
java.lang.String str11 = unicodeEscaper1.translate(charSequence10);
java.lang.Class<?> wildcardClass12 = unicodeEscaper1.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertTrue("'" + boolean4 + "' != '" + false + "'", boolean4 == false);
org.junit.Assert.assertTrue("'" + boolean7 + "' != '" + false + "'", boolean7 == false);
org.junit.Assert.assertEquals("'" + str9 + "' != '" + "\\u0032\\u0033" + "'", str9, "\\u0032\\u0033");
org.junit.Assert.assertNull(str11);
org.junit.Assert.assertNotNull(wildcardClass12);
}
@Test
public void test2412() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2412");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) 10);
java.lang.String str3 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u0068\\u0069\\u0021");
java.lang.String str5 = unicodeEscaper1.translate((java.lang.CharSequence) "");
java.io.Writer writer7 = null;
boolean boolean8 = unicodeEscaper1.translate((int) (byte) 0, writer7);
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertEquals("'" + str3 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0036\\u0038\\u005C\\u0075\\u0030\\u0030\\u0036\\u0039\\u005C\\u0075\\u0030\\u0030\\u0032\\u0031" + "'", str3, "\\u005C\\u0075\\u0030\\u0030\\u0036\\u0038\\u005C\\u0075\\u0030\\u0030\\u0036\\u0039\\u005C\\u0075\\u0030\\u0030\\u0032\\u0031");
org.junit.Assert.assertEquals("'" + str5 + "' != '" + "" + "'", str5, "");
org.junit.Assert.assertTrue("'" + boolean8 + "' != '" + false + "'", boolean8 == false);
}
@Test
public void test2413() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2413");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) ' ');
java.io.Writer writer3 = null;
boolean boolean4 = unicodeEscaper1.translate((int) 'a', writer3);
java.io.Writer writer6 = null;
boolean boolean7 = unicodeEscaper1.translate(100, writer6);
java.lang.CharSequence charSequence8 = null;
java.lang.String str9 = unicodeEscaper1.translate(charSequence8);
java.io.Writer writer12 = null;
int int13 = unicodeEscaper1.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0032\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033", (int) (short) 10, writer12);
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertTrue("'" + boolean4 + "' != '" + false + "'", boolean4 == false);
org.junit.Assert.assertTrue("'" + boolean7 + "' != '" + false + "'", boolean7 == false);
org.junit.Assert.assertNull(str9);
org.junit.Assert.assertTrue("'" + int13 + "' != '" + 0 + "'", int13 == 0);
}
@Test
public void test2414() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2414");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 1, (int) (byte) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750031");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750031" + "'", str4, "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750031");
}
@Test
public void test2415() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2415");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) '4', 1);
java.lang.Class<?> wildcardClass3 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(wildcardClass3);
}
@Test
public void test2416() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2416");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 1, (int) (byte) -1);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (byte) 10, writer4);
java.io.Writer writer8 = null;
int int9 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034", (int) (byte) 1, writer8);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertTrue("'" + int9 + "' != '" + 0 + "'", int9 == 0);
}
@Test
public void test2417() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2417");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 1, (int) (byte) 0);
java.io.Writer writer5 = null;
// The following exception was thrown during execution in test generation
try {
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0038\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0039\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031", (int) (byte) 0, writer5);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2418() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2418");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (short) 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, 1);
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "64");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) 'a', (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str15 = unicodeEscaper13.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer21 = null;
int int22 = unicodeEscaper18.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer21);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray29 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper18, unicodeEscaper24, unicodeEscaper25, unicodeEscaper28 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator30 = unicodeEscaper13.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper10.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator32 = unicodeEscaper5.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper2.with(charSequenceTranslatorArray29);
java.lang.String str35 = charSequenceTranslator33.translate((java.lang.CharSequence) "\\u0036\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "64" + "'", str7, "64");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertEquals("'" + str15 + "' != '" + "hi!" + "'", str15, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertTrue("'" + int22 + "' != '" + 0 + "'", int22 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray29);
org.junit.Assert.assertNotNull(charSequenceTranslator30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
org.junit.Assert.assertNotNull(charSequenceTranslator32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
org.junit.Assert.assertEquals("'" + str35 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031" + "'", str35, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
}
@Test
public void test2419() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2419");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) 'a', 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "0");
java.lang.Class<?> wildcardClass5 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u0030" + "'", str4, "\\u0030");
org.junit.Assert.assertNotNull(wildcardClass5);
}
@Test
public void test2420() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2420");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (byte) 100, writer4);
java.lang.Class<?> wildcardClass6 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertNotNull(wildcardClass6);
}
@Test
public void test2421() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2421");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, (int) 'a');
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0038\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0039\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031", 100, writer5);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (short) -1);
java.lang.String str10 = unicodeEscaper8.translate((java.lang.CharSequence) "");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(1, (int) (short) -1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str18 = unicodeEscaper16.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer24 = null;
int int25 = unicodeEscaper21.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer24);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray32 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper21, unicodeEscaper27, unicodeEscaper28, unicodeEscaper31 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper16.with(charSequenceTranslatorArray32);
java.lang.String str35 = unicodeEscaper16.translate((java.lang.CharSequence) "");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper38 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str40 = unicodeEscaper38.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper43 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str45 = unicodeEscaper43.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper48 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer51 = null;
int int52 = unicodeEscaper48.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer51);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper54 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper55 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper58 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray59 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper48, unicodeEscaper54, unicodeEscaper55, unicodeEscaper58 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator60 = unicodeEscaper43.with(charSequenceTranslatorArray59);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator61 = unicodeEscaper38.with(charSequenceTranslatorArray59);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper63 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper66 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer68 = null;
boolean boolean69 = unicodeEscaper66.translate((int) (short) 0, writer68);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper70 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper72 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray73 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper66, unicodeEscaper70, unicodeEscaper72 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator74 = unicodeEscaper63.with(charSequenceTranslatorArray73);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator75 = charSequenceTranslator61.with(charSequenceTranslatorArray73);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator76 = unicodeEscaper16.with(charSequenceTranslatorArray73);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator77 = unicodeEscaper13.with(charSequenceTranslatorArray73);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator78 = unicodeEscaper8.with(charSequenceTranslatorArray73);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator79 = unicodeEscaper2.with(charSequenceTranslatorArray73);
java.lang.Class<?> wildcardClass80 = charSequenceTranslatorArray73.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertEquals("'" + str10 + "' != '" + "" + "'", str10, "");
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertEquals("'" + str18 + "' != '" + "hi!" + "'", str18, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertTrue("'" + int25 + "' != '" + 0 + "'", int25 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
org.junit.Assert.assertEquals("'" + str35 + "' != '" + "" + "'", str35, "");
org.junit.Assert.assertNotNull(unicodeEscaper38);
org.junit.Assert.assertEquals("'" + str40 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str40, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper43);
org.junit.Assert.assertEquals("'" + str45 + "' != '" + "hi!" + "'", str45, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper48);
org.junit.Assert.assertTrue("'" + int52 + "' != '" + 0 + "'", int52 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper54);
org.junit.Assert.assertNotNull(unicodeEscaper58);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray59);
org.junit.Assert.assertNotNull(charSequenceTranslator60);
org.junit.Assert.assertNotNull(charSequenceTranslator61);
org.junit.Assert.assertNotNull(unicodeEscaper63);
org.junit.Assert.assertNotNull(unicodeEscaper66);
org.junit.Assert.assertTrue("'" + boolean69 + "' != '" + false + "'", boolean69 == false);
org.junit.Assert.assertNotNull(unicodeEscaper72);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray73);
org.junit.Assert.assertNotNull(charSequenceTranslator74);
org.junit.Assert.assertNotNull(charSequenceTranslator75);
org.junit.Assert.assertNotNull(charSequenceTranslator76);
org.junit.Assert.assertNotNull(charSequenceTranslator77);
org.junit.Assert.assertNotNull(charSequenceTranslator78);
org.junit.Assert.assertNotNull(charSequenceTranslator79);
org.junit.Assert.assertNotNull(wildcardClass80);
}
@Test
public void test2422() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2422");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 1, (int) ' ');
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (short) 100, writer4);
java.lang.String str7 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0038\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0039\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0032\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0038\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0039\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0032\\u0031" + "'", str7, "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0038\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0039\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0032\\u0031");
}
@Test
public void test2423() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2423");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (short) 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, 1);
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "64");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) 'a', (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str15 = unicodeEscaper13.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer21 = null;
int int22 = unicodeEscaper18.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer21);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray29 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper18, unicodeEscaper24, unicodeEscaper25, unicodeEscaper28 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator30 = unicodeEscaper13.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper10.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator32 = unicodeEscaper5.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper2.with(charSequenceTranslatorArray29);
java.io.Writer writer35 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean36 = unicodeEscaper2.translate((-1), writer35);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "64" + "'", str7, "64");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertEquals("'" + str15 + "' != '" + "hi!" + "'", str15, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertTrue("'" + int22 + "' != '" + 0 + "'", int22 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray29);
org.junit.Assert.assertNotNull(charSequenceTranslator30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
org.junit.Assert.assertNotNull(charSequenceTranslator32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
}
@Test
public void test2424() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2424");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) '#', 100);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0036\\u0034");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\\\u00750036\\\\u00750034" + "'", str4, "\\\\u00750036\\\\u00750034");
}
@Test
public void test2425() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2425");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 10, (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) -1, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 10, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer15 = null;
boolean boolean16 = unicodeEscaper13.translate((int) (short) 0, writer15);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray20 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper13, unicodeEscaper17, unicodeEscaper19 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator21 = unicodeEscaper10.with(charSequenceTranslatorArray20);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator22 = unicodeEscaper8.with(charSequenceTranslatorArray20);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator23 = unicodeEscaper5.with(charSequenceTranslatorArray20);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) -1, 0);
java.lang.String str28 = unicodeEscaper26.translate((java.lang.CharSequence) "1");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str33 = unicodeEscaper31.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str38 = unicodeEscaper36.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer44 = null;
int int45 = unicodeEscaper41.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer44);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper47 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper48 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper51 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray52 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper41, unicodeEscaper47, unicodeEscaper48, unicodeEscaper51 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator53 = unicodeEscaper36.with(charSequenceTranslatorArray52);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator54 = unicodeEscaper31.with(charSequenceTranslatorArray52);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer60 = null;
int int61 = unicodeEscaper57.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer60);
java.io.Writer writer63 = null;
boolean boolean64 = unicodeEscaper57.translate((int) (byte) -1, writer63);
java.lang.String str66 = unicodeEscaper57.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper69 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str71 = unicodeEscaper69.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray72 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper57, unicodeEscaper69 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator73 = unicodeEscaper31.with(charSequenceTranslatorArray72);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator74 = unicodeEscaper26.with(charSequenceTranslatorArray72);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator75 = charSequenceTranslator23.with(charSequenceTranslatorArray72);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator76 = unicodeEscaper2.with(charSequenceTranslatorArray72);
java.lang.String str78 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0036\\u005Cu\\u0030\\u0030\\u0033\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertTrue("'" + boolean16 + "' != '" + false + "'", boolean16 == false);
org.junit.Assert.assertNotNull(unicodeEscaper19);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray20);
org.junit.Assert.assertNotNull(charSequenceTranslator21);
org.junit.Assert.assertNotNull(charSequenceTranslator22);
org.junit.Assert.assertNotNull(charSequenceTranslator23);
org.junit.Assert.assertNotNull(unicodeEscaper26);
org.junit.Assert.assertEquals("'" + str28 + "' != '" + "\\u0031" + "'", str28, "\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertEquals("'" + str33 + "' != '" + "hi!" + "'", str33, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper36);
org.junit.Assert.assertEquals("'" + str38 + "' != '" + "hi!" + "'", str38, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper41);
org.junit.Assert.assertTrue("'" + int45 + "' != '" + 0 + "'", int45 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper47);
org.junit.Assert.assertNotNull(unicodeEscaper51);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray52);
org.junit.Assert.assertNotNull(charSequenceTranslator53);
org.junit.Assert.assertNotNull(charSequenceTranslator54);
org.junit.Assert.assertNotNull(unicodeEscaper57);
org.junit.Assert.assertTrue("'" + int61 + "' != '" + 0 + "'", int61 == 0);
org.junit.Assert.assertTrue("'" + boolean64 + "' != '" + false + "'", boolean64 == false);
org.junit.Assert.assertEquals("'" + str66 + "' != '" + "0" + "'", str66, "0");
org.junit.Assert.assertNotNull(unicodeEscaper69);
org.junit.Assert.assertEquals("'" + str71 + "' != '" + "hi!" + "'", str71, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray72);
org.junit.Assert.assertNotNull(charSequenceTranslator73);
org.junit.Assert.assertNotNull(charSequenceTranslator74);
org.junit.Assert.assertNotNull(charSequenceTranslator75);
org.junit.Assert.assertNotNull(charSequenceTranslator76);
org.junit.Assert.assertEquals("'" + str78 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u0075\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031" + "'", str78, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u0075\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
}
@Test
public void test2426() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2426");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) 'a', 100);
java.io.Writer writer4 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean5 = unicodeEscaper2.translate((int) (byte) 100, writer4);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2427() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2427");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) '#', (int) 'a');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 10, 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 1, (int) (byte) 10);
java.lang.String str13 = unicodeEscaper11.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0036\\u0038\\u005C\\u0075\\u0030\\u0030\\u0036\\u0039\\u005C\\u0075\\u0030\\u0030\\u0032\\u0031");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(0, (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, (int) 'a');
java.lang.String str21 = unicodeEscaper19.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, 1);
java.lang.String str26 = unicodeEscaper24.translate((java.lang.CharSequence) "FFFFFFFF");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper29 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str31 = unicodeEscaper29.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper34 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str36 = unicodeEscaper34.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper39 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer42 = null;
int int43 = unicodeEscaper39.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer42);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper45 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper46 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper49 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray50 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper39, unicodeEscaper45, unicodeEscaper46, unicodeEscaper49 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator51 = unicodeEscaper34.with(charSequenceTranslatorArray50);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator52 = unicodeEscaper29.with(charSequenceTranslatorArray50);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator53 = unicodeEscaper24.with(charSequenceTranslatorArray50);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator54 = unicodeEscaper19.with(charSequenceTranslatorArray50);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator55 = unicodeEscaper16.with(charSequenceTranslatorArray50);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator56 = unicodeEscaper11.with(charSequenceTranslatorArray50);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator57 = unicodeEscaper8.with(charSequenceTranslatorArray50);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator58 = unicodeEscaper5.with(charSequenceTranslatorArray50);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator59 = unicodeEscaper2.with(charSequenceTranslatorArray50);
java.lang.String str61 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertEquals("'" + str13 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0038\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0039\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031" + "'", str13, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0038\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0039\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertNotNull(unicodeEscaper19);
org.junit.Assert.assertEquals("'" + str21 + "' != '" + "0" + "'", str21, "0");
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertEquals("'" + str26 + "' != '" + "FFFFFFFF" + "'", str26, "FFFFFFFF");
org.junit.Assert.assertNotNull(unicodeEscaper29);
org.junit.Assert.assertEquals("'" + str31 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str31, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper34);
org.junit.Assert.assertEquals("'" + str36 + "' != '" + "hi!" + "'", str36, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper39);
org.junit.Assert.assertTrue("'" + int43 + "' != '" + 0 + "'", int43 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper45);
org.junit.Assert.assertNotNull(unicodeEscaper49);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray50);
org.junit.Assert.assertNotNull(charSequenceTranslator51);
org.junit.Assert.assertNotNull(charSequenceTranslator52);
org.junit.Assert.assertNotNull(charSequenceTranslator53);
org.junit.Assert.assertNotNull(charSequenceTranslator54);
org.junit.Assert.assertNotNull(charSequenceTranslator55);
org.junit.Assert.assertNotNull(charSequenceTranslator56);
org.junit.Assert.assertNotNull(charSequenceTranslator57);
org.junit.Assert.assertNotNull(charSequenceTranslator58);
org.junit.Assert.assertNotNull(charSequenceTranslator59);
org.junit.Assert.assertEquals("'" + str61 + "' != '" + "\\\\u00750068\\\\u00750069\\\\u00750021" + "'", str61, "\\\\u00750068\\\\u00750069\\\\u00750021");
}
@Test
public void test2428() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2428");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, (int) 'a');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 10, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer12 = null;
boolean boolean13 = unicodeEscaper10.translate((int) (short) 0, writer12);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray17 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper10, unicodeEscaper14, unicodeEscaper16 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator18 = unicodeEscaper7.with(charSequenceTranslatorArray17);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator19 = unicodeEscaper5.with(charSequenceTranslatorArray17);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator20 = unicodeEscaper2.with(charSequenceTranslatorArray17);
java.lang.Class<?> wildcardClass21 = charSequenceTranslator20.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertTrue("'" + boolean13 + "' != '" + false + "'", boolean13 == false);
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray17);
org.junit.Assert.assertNotNull(charSequenceTranslator18);
org.junit.Assert.assertNotNull(charSequenceTranslator19);
org.junit.Assert.assertNotNull(charSequenceTranslator20);
org.junit.Assert.assertNotNull(wildcardClass21);
}
@Test
public void test2429() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2429");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, 1);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
java.lang.String str6 = unicodeEscaper2.translate((java.lang.CharSequence) "64");
java.lang.String str8 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
java.lang.String str10 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
java.lang.Class<?> wildcardClass11 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030" + "'", str4, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
org.junit.Assert.assertEquals("'" + str6 + "' != '" + "64" + "'", str6, "64");
org.junit.Assert.assertEquals("'" + str8 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034" + "'", str8, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
org.junit.Assert.assertEquals("'" + str10 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034" + "'", str10, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
org.junit.Assert.assertNotNull(wildcardClass11);
}
@Test
public void test2430() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2430");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, 0);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((-1), writer4);
java.io.Writer writer7 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\u005Cu\\u0030\\u0030\\u0034\\u0031", writer7);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
}
@Test
public void test2431() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2431");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 1, 0);
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2432() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2432");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) -1, (int) (byte) 0);
java.io.Writer writer4 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\u0032\\u0030", writer4);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2433() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2433");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) -1, (int) (short) 1);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
java.io.Writer writer7 = null;
int int8 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u\\u0030\\u003075\\u0030\\u00305C\\\\u\\u0030\\u003075\\u0030\\u003075\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0030\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0030\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0033\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0032\\\\u\\u0030\\u003075\\u0030\\u00305C\\\\u\\u0030\\u003075\\u0030\\u003075\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0030\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0030\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0033\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0033", 10, writer7);
java.io.Writer writer10 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean11 = unicodeEscaper2.translate(1, writer10);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030" + "'", str4, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
org.junit.Assert.assertTrue("'" + int8 + "' != '" + 0 + "'", int8 == 0);
}
@Test
public void test2434() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2434");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((-1), (int) 'a');
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (byte) 0, writer4);
java.io.Writer writer7 = null;
boolean boolean8 = unicodeEscaper2.translate((int) (short) 0, writer7);
java.io.Writer writer11 = null;
int int12 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0038\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0039\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031", 10, writer11);
java.lang.Class<?> wildcardClass13 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertTrue("'" + boolean8 + "' != '" + false + "'", boolean8 == false);
org.junit.Assert.assertTrue("'" + int12 + "' != '" + 0 + "'", int12 == 0);
org.junit.Assert.assertNotNull(wildcardClass13);
}
@Test
public void test2435() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2435");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, (int) (short) 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) -1, (int) (short) -1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str10 = unicodeEscaper8.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str15 = unicodeEscaper13.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer21 = null;
int int22 = unicodeEscaper18.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer21);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray29 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper18, unicodeEscaper24, unicodeEscaper25, unicodeEscaper28 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator30 = unicodeEscaper13.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper8.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper34 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer37 = null;
int int38 = unicodeEscaper34.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer37);
java.io.Writer writer40 = null;
boolean boolean41 = unicodeEscaper34.translate((int) (byte) -1, writer40);
java.lang.String str43 = unicodeEscaper34.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper46 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str48 = unicodeEscaper46.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray49 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper34, unicodeEscaper46 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator50 = unicodeEscaper8.with(charSequenceTranslatorArray49);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator51 = unicodeEscaper5.with(charSequenceTranslatorArray49);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper54 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str59 = unicodeEscaper57.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper62 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str64 = unicodeEscaper62.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper67 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer70 = null;
int int71 = unicodeEscaper67.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer70);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper73 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper74 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper77 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray78 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper67, unicodeEscaper73, unicodeEscaper74, unicodeEscaper77 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator79 = unicodeEscaper62.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator80 = unicodeEscaper57.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator81 = unicodeEscaper54.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator82 = unicodeEscaper5.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator83 = unicodeEscaper2.with(charSequenceTranslatorArray78);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertEquals("'" + str10 + "' != '" + "hi!" + "'", str10, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertEquals("'" + str15 + "' != '" + "hi!" + "'", str15, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertTrue("'" + int22 + "' != '" + 0 + "'", int22 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray29);
org.junit.Assert.assertNotNull(charSequenceTranslator30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
org.junit.Assert.assertNotNull(unicodeEscaper34);
org.junit.Assert.assertTrue("'" + int38 + "' != '" + 0 + "'", int38 == 0);
org.junit.Assert.assertTrue("'" + boolean41 + "' != '" + false + "'", boolean41 == false);
org.junit.Assert.assertEquals("'" + str43 + "' != '" + "0" + "'", str43, "0");
org.junit.Assert.assertNotNull(unicodeEscaper46);
org.junit.Assert.assertEquals("'" + str48 + "' != '" + "hi!" + "'", str48, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray49);
org.junit.Assert.assertNotNull(charSequenceTranslator50);
org.junit.Assert.assertNotNull(charSequenceTranslator51);
org.junit.Assert.assertNotNull(unicodeEscaper54);
org.junit.Assert.assertNotNull(unicodeEscaper57);
org.junit.Assert.assertEquals("'" + str59 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str59, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper62);
org.junit.Assert.assertEquals("'" + str64 + "' != '" + "hi!" + "'", str64, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper67);
org.junit.Assert.assertTrue("'" + int71 + "' != '" + 0 + "'", int71 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper73);
org.junit.Assert.assertNotNull(unicodeEscaper77);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray78);
org.junit.Assert.assertNotNull(charSequenceTranslator79);
org.junit.Assert.assertNotNull(charSequenceTranslator80);
org.junit.Assert.assertNotNull(charSequenceTranslator81);
org.junit.Assert.assertNotNull(charSequenceTranslator82);
org.junit.Assert.assertNotNull(charSequenceTranslator83);
}
@Test
public void test2436() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2436");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 0, (int) (byte) -1);
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "23", 1, writer5);
java.io.Writer writer9 = null;
int int10 = unicodeEscaper2.translate((java.lang.CharSequence) "34", (int) (byte) 1, writer9);
java.io.Writer writer13 = null;
// The following exception was thrown during execution in test generation
try {
int int14 = unicodeEscaper2.translate((java.lang.CharSequence) "", (int) (byte) 10, writer13);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: 10");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
org.junit.Assert.assertTrue("'" + int10 + "' != '" + 0 + "'", int10 == 0);
}
@Test
public void test2437() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2437");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) 'a', (-1));
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
java.io.Writer writer6 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean7 = unicodeEscaper2.translate((int) ' ', writer6);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030" + "'", str4, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
}
@Test
public void test2438() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2438");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, (int) (short) 100);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (short) 10, writer4);
java.lang.String str7 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005Cu00\\u0035\\u0043\\u005Cu00\\u0037\\u0035\\u005Cu0030\\u005Cu0030\\u005Cu0033\\u005Cu0033\\u005Cu00\\u0035\\u0043\\u005Cu00\\u0037\\u0035\\u005Cu0030\\u005Cu0030\\u005Cu0033\\u005Cu003\\u0034");
java.lang.String str9 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0037\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "\\u005Cu00\\u0035\\u0043\\u005Cu00\\u0037\\u0035\\u005Cu0030\\u005Cu0030\\u005Cu0033\\u005Cu0033\\u005Cu00\\u0035\\u0043\\u005Cu00\\u0037\\u0035\\u005Cu0030\\u005Cu0030\\u005Cu0033\\u005Cu003\\u0034" + "'", str7, "\\u005Cu00\\u0035\\u0043\\u005Cu00\\u0037\\u0035\\u005Cu0030\\u005Cu0030\\u005Cu0033\\u005Cu0033\\u005Cu00\\u0035\\u0043\\u005Cu00\\u0037\\u0035\\u005Cu0030\\u005Cu0030\\u005Cu0033\\u005Cu003\\u0034");
org.junit.Assert.assertEquals("'" + str9 + "' != '" + "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0037\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030" + "'", str9, "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0037\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030");
}
@Test
public void test2439() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2439");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(10, 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str19 = unicodeEscaper17.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer25 = null;
int int26 = unicodeEscaper22.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer25);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper29 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray33 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper22, unicodeEscaper28, unicodeEscaper29, unicodeEscaper32 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator34 = unicodeEscaper17.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator35 = unicodeEscaper14.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator36 = unicodeEscaper11.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator37 = unicodeEscaper8.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator38 = unicodeEscaper5.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator39 = unicodeEscaper2.with(charSequenceTranslatorArray33);
java.io.Writer writer41 = null;
boolean boolean42 = unicodeEscaper2.translate((int) (byte) 10, writer41);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertNotNull(unicodeEscaper14);
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertEquals("'" + str19 + "' != '" + "hi!" + "'", str19, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertTrue("'" + int26 + "' != '" + 0 + "'", int26 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(unicodeEscaper32);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray33);
org.junit.Assert.assertNotNull(charSequenceTranslator34);
org.junit.Assert.assertNotNull(charSequenceTranslator35);
org.junit.Assert.assertNotNull(charSequenceTranslator36);
org.junit.Assert.assertNotNull(charSequenceTranslator37);
org.junit.Assert.assertNotNull(charSequenceTranslator38);
org.junit.Assert.assertNotNull(charSequenceTranslator39);
org.junit.Assert.assertTrue("'" + boolean42 + "' != '" + false + "'", boolean42 == false);
}
@Test
public void test2440() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2440");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 10, (int) 'a');
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2441() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2441");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str9 = unicodeEscaper7.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer15 = null;
int int16 = unicodeEscaper12.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer15);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray23 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper12, unicodeEscaper18, unicodeEscaper19, unicodeEscaper22 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator24 = unicodeEscaper7.with(charSequenceTranslatorArray23);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator25 = unicodeEscaper2.with(charSequenceTranslatorArray23);
java.lang.String str27 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u005Cu\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0038\\u005C\\u005C\\u005Cu\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0039\\u005C\\u005C\\u005Cu\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0032\\u0031");
java.io.Writer writer29 = null;
boolean boolean30 = unicodeEscaper2.translate((int) (byte) 10, writer29);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "hi!" + "'", str4, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertEquals("'" + str9 + "' != '" + "hi!" + "'", str9, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertTrue("'" + int16 + "' != '" + 0 + "'", int16 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray23);
org.junit.Assert.assertNotNull(charSequenceTranslator24);
org.junit.Assert.assertNotNull(charSequenceTranslator25);
org.junit.Assert.assertEquals("'" + str27 + "' != '" + "\\u005C\\u005C\\u005Cu\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0038\\u005C\\u005C\\u005Cu\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0039\\u005C\\u005C\\u005Cu\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0032\\u0031" + "'", str27, "\\u005C\\u005C\\u005Cu\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0038\\u005C\\u005C\\u005Cu\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0039\\u005C\\u005C\\u005Cu\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0032\\u0031");
org.junit.Assert.assertTrue("'" + boolean30 + "' != '" + false + "'", boolean30 == false);
}
@Test
public void test2442() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2442");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(1, (int) (short) -1);
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "FFFFFFFF", 1, writer5);
java.io.Writer writer8 = null;
boolean boolean9 = unicodeEscaper2.translate((int) '#', writer8);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
java.lang.String str13 = unicodeEscaper11.translate((java.lang.CharSequence) "\\\\u00750030");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(1, (-1));
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer23 = null;
boolean boolean24 = unicodeEscaper21.translate((int) (short) 0, writer23);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray28 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper21, unicodeEscaper25, unicodeEscaper27 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator29 = unicodeEscaper18.with(charSequenceTranslatorArray28);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator30 = unicodeEscaper16.with(charSequenceTranslatorArray28);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper11.with(charSequenceTranslatorArray28);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator32 = unicodeEscaper2.with(charSequenceTranslatorArray28);
java.io.Writer writer34 = null;
boolean boolean35 = unicodeEscaper2.translate((int) (byte) 0, writer34);
java.lang.String str37 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
java.io.Writer writer40 = null;
int int41 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030", (int) '#', writer40);
java.lang.String str43 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
org.junit.Assert.assertTrue("'" + boolean9 + "' != '" + false + "'", boolean9 == false);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertEquals("'" + str13 + "' != '" + "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030" + "'", str13, "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030");
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertTrue("'" + boolean24 + "' != '" + false + "'", boolean24 == false);
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray28);
org.junit.Assert.assertNotNull(charSequenceTranslator29);
org.junit.Assert.assertNotNull(charSequenceTranslator30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
org.junit.Assert.assertNotNull(charSequenceTranslator32);
org.junit.Assert.assertTrue("'" + boolean35 + "' != '" + false + "'", boolean35 == false);
org.junit.Assert.assertEquals("'" + str37 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031" + "'", str37, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
org.junit.Assert.assertTrue("'" + int41 + "' != '" + 0 + "'", int41 == 0);
org.junit.Assert.assertEquals("'" + str43 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033" + "'", str43, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033");
}
@Test
public void test2443() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2443");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, 0);
java.io.Writer writer7 = null;
boolean boolean8 = unicodeEscaper5.translate((int) (short) 0, writer7);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str18 = unicodeEscaper16.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str23 = unicodeEscaper21.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer29 = null;
int int30 = unicodeEscaper26.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer29);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper33 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray37 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper26, unicodeEscaper32, unicodeEscaper33, unicodeEscaper36 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator38 = unicodeEscaper21.with(charSequenceTranslatorArray37);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator39 = unicodeEscaper16.with(charSequenceTranslatorArray37);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator40 = unicodeEscaper13.with(charSequenceTranslatorArray37);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator41 = unicodeEscaper11.with(charSequenceTranslatorArray37);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator42 = unicodeEscaper5.with(charSequenceTranslatorArray37);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator43 = unicodeEscaper2.with(charSequenceTranslatorArray37);
java.io.Writer writer46 = null;
// The following exception was thrown during execution in test generation
try {
int int47 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u005Cu\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0038\\u005C\\u005C\\u005Cu\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0036\\u0039\\u005C\\u005C\\u005Cu\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0032\\u0031", (int) (byte) -1, writer46);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: -1");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertTrue("'" + boolean8 + "' != '" + false + "'", boolean8 == false);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertEquals("'" + str18 + "' != '" + "hi!" + "'", str18, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertEquals("'" + str23 + "' != '" + "hi!" + "'", str23, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper26);
org.junit.Assert.assertTrue("'" + int30 + "' != '" + 0 + "'", int30 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper32);
org.junit.Assert.assertNotNull(unicodeEscaper36);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray37);
org.junit.Assert.assertNotNull(charSequenceTranslator38);
org.junit.Assert.assertNotNull(charSequenceTranslator39);
org.junit.Assert.assertNotNull(charSequenceTranslator40);
org.junit.Assert.assertNotNull(charSequenceTranslator41);
org.junit.Assert.assertNotNull(charSequenceTranslator42);
org.junit.Assert.assertNotNull(charSequenceTranslator43);
}
@Test
public void test2444() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2444");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, 1);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (byte) 10, writer4);
java.io.Writer writer8 = null;
// The following exception was thrown during execution in test generation
try {
int int9 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005Cu\\u0030\\u0030\\u0033\\u0032\\u005Cu\\u0030\\u0030\\u0033\\u0030", 100, writer8);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: 100");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
}
@Test
public void test2445() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2445");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, (int) (short) 100);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (short) 10, writer4);
java.lang.String str7 = unicodeEscaper2.translate((java.lang.CharSequence) "1");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (short) -1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 0, 0);
java.io.Writer writer15 = null;
boolean boolean16 = unicodeEscaper13.translate((int) ' ', writer15);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str21 = unicodeEscaper19.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper23 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str28 = unicodeEscaper26.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str33 = unicodeEscaper31.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer39 = null;
int int40 = unicodeEscaper36.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer39);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper42 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper43 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper46 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray47 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper36, unicodeEscaper42, unicodeEscaper43, unicodeEscaper46 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator48 = unicodeEscaper31.with(charSequenceTranslatorArray47);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator49 = unicodeEscaper26.with(charSequenceTranslatorArray47);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator50 = unicodeEscaper23.with(charSequenceTranslatorArray47);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper53 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer55 = null;
boolean boolean56 = unicodeEscaper53.translate((int) (byte) 100, writer55);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper59 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper62 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str64 = unicodeEscaper62.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper67 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer70 = null;
int int71 = unicodeEscaper67.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer70);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper73 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper74 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper77 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray78 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper67, unicodeEscaper73, unicodeEscaper74, unicodeEscaper77 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator79 = unicodeEscaper62.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator80 = unicodeEscaper59.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator81 = unicodeEscaper53.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator82 = charSequenceTranslator50.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator83 = unicodeEscaper19.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator84 = unicodeEscaper13.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator85 = unicodeEscaper10.with(charSequenceTranslatorArray78);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator86 = unicodeEscaper2.with(charSequenceTranslatorArray78);
java.io.Writer writer88 = null;
boolean boolean89 = unicodeEscaper2.translate((int) ' ', writer88);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "1" + "'", str7, "1");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertTrue("'" + boolean16 + "' != '" + false + "'", boolean16 == false);
org.junit.Assert.assertNotNull(unicodeEscaper19);
org.junit.Assert.assertEquals("'" + str21 + "' != '" + "hi!" + "'", str21, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper23);
org.junit.Assert.assertNotNull(unicodeEscaper26);
org.junit.Assert.assertEquals("'" + str28 + "' != '" + "hi!" + "'", str28, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertEquals("'" + str33 + "' != '" + "hi!" + "'", str33, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper36);
org.junit.Assert.assertTrue("'" + int40 + "' != '" + 0 + "'", int40 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper42);
org.junit.Assert.assertNotNull(unicodeEscaper46);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray47);
org.junit.Assert.assertNotNull(charSequenceTranslator48);
org.junit.Assert.assertNotNull(charSequenceTranslator49);
org.junit.Assert.assertNotNull(charSequenceTranslator50);
org.junit.Assert.assertNotNull(unicodeEscaper53);
org.junit.Assert.assertTrue("'" + boolean56 + "' != '" + false + "'", boolean56 == false);
org.junit.Assert.assertNotNull(unicodeEscaper59);
org.junit.Assert.assertNotNull(unicodeEscaper62);
org.junit.Assert.assertEquals("'" + str64 + "' != '" + "hi!" + "'", str64, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper67);
org.junit.Assert.assertTrue("'" + int71 + "' != '" + 0 + "'", int71 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper73);
org.junit.Assert.assertNotNull(unicodeEscaper77);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray78);
org.junit.Assert.assertNotNull(charSequenceTranslator79);
org.junit.Assert.assertNotNull(charSequenceTranslator80);
org.junit.Assert.assertNotNull(charSequenceTranslator81);
org.junit.Assert.assertNotNull(charSequenceTranslator82);
org.junit.Assert.assertNotNull(charSequenceTranslator83);
org.junit.Assert.assertNotNull(charSequenceTranslator84);
org.junit.Assert.assertNotNull(charSequenceTranslator85);
org.junit.Assert.assertNotNull(charSequenceTranslator86);
org.junit.Assert.assertTrue("'" + boolean89 + "' != '" + false + "'", boolean89 == false);
}
@Test
public void test2446() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2446");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, (int) (byte) 100);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) '4', writer4);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(10, 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str19 = unicodeEscaper17.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer25 = null;
int int26 = unicodeEscaper22.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer25);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper29 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray33 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper22, unicodeEscaper28, unicodeEscaper29, unicodeEscaper32 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator34 = unicodeEscaper17.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator35 = unicodeEscaper14.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator36 = unicodeEscaper11.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator37 = unicodeEscaper8.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator38 = unicodeEscaper2.with(charSequenceTranslatorArray33);
java.io.Writer writer40 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033", writer40);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertNotNull(unicodeEscaper14);
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertEquals("'" + str19 + "' != '" + "hi!" + "'", str19, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertTrue("'" + int26 + "' != '" + 0 + "'", int26 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(unicodeEscaper32);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray33);
org.junit.Assert.assertNotNull(charSequenceTranslator34);
org.junit.Assert.assertNotNull(charSequenceTranslator35);
org.junit.Assert.assertNotNull(charSequenceTranslator36);
org.junit.Assert.assertNotNull(charSequenceTranslator37);
org.junit.Assert.assertNotNull(charSequenceTranslator38);
}
@Test
public void test2447() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2447");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) -1);
java.io.Writer writer3 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean4 = unicodeEscaper1.translate((int) (short) 10, writer3);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper1);
}
@Test
public void test2448() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2448");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 0, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(1, (int) (short) 10);
java.io.Writer writer8 = null;
int int9 = unicodeEscaper5.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030", 0, writer8);
java.io.Writer writer11 = null;
boolean boolean12 = unicodeEscaper5.translate((int) (short) -1, writer11);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer17 = null;
boolean boolean18 = unicodeEscaper15.translate((int) (short) 0, writer17);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str23 = unicodeEscaper21.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str28 = unicodeEscaper26.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer34 = null;
int int35 = unicodeEscaper31.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer34);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper38 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray42 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper31, unicodeEscaper37, unicodeEscaper38, unicodeEscaper41 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator43 = unicodeEscaper26.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper21.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator45 = unicodeEscaper15.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator46 = unicodeEscaper5.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator47 = unicodeEscaper2.with(charSequenceTranslatorArray42);
java.lang.String str49 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750036\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750031");
java.io.Writer writer51 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean52 = unicodeEscaper2.translate(0, writer51);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertTrue("'" + int9 + "' != '" + 0 + "'", int9 == 0);
org.junit.Assert.assertTrue("'" + boolean12 + "' != '" + false + "'", boolean12 == false);
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertTrue("'" + boolean18 + "' != '" + false + "'", boolean18 == false);
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertEquals("'" + str23 + "' != '" + "hi!" + "'", str23, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper26);
org.junit.Assert.assertEquals("'" + str28 + "' != '" + "hi!" + "'", str28, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertTrue("'" + int35 + "' != '" + 0 + "'", int35 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper37);
org.junit.Assert.assertNotNull(unicodeEscaper41);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray42);
org.junit.Assert.assertNotNull(charSequenceTranslator43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertNotNull(charSequenceTranslator45);
org.junit.Assert.assertNotNull(charSequenceTranslator46);
org.junit.Assert.assertNotNull(charSequenceTranslator47);
org.junit.Assert.assertEquals("'" + str49 + "' != '" + "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750036\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750031" + "'", str49, "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750036\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750031");
}
@Test
public void test2449() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2449");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) 'a', (int) (byte) 100);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0032\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0032\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033" + "'", str4, "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0032\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033");
}
@Test
public void test2450() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2450");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0036\\u0038\\u005C\\u0075\\u0030\\u0030\\u0036\\u0039\\u005C\\u0075\\u0030\\u0030\\u0032\\u0031", (int) (byte) 1, writer5);
java.lang.String str8 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005Cu\\u0030\\u0030\\u0033\\u0032\\u005Cu\\u0030\\u0030\\u0033\\u0030");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
org.junit.Assert.assertEquals("'" + str8 + "' != '" + "\\u005Cu\\u0030\\u0030\\u0033\\u0032\\u005Cu\\u0030\\u0030\\u0033\\u0030" + "'", str8, "\\u005Cu\\u0030\\u0030\\u0033\\u0032\\u005Cu\\u0030\\u0030\\u0033\\u0030");
}
@Test
public void test2451() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2451");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
java.lang.String str3 = unicodeEscaper1.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750031");
java.io.Writer writer5 = null;
boolean boolean6 = unicodeEscaper1.translate((int) (byte) 1, writer5);
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertEquals("'" + str3 + "' != '" + "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0031" + "'", str3, "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0031");
org.junit.Assert.assertTrue("'" + boolean6 + "' != '" + false + "'", boolean6 == false);
}
@Test
public void test2452() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2452");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, (int) '4');
java.io.Writer writer5 = null;
// The following exception was thrown during execution in test generation
try {
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "6\\u\\u0030\\u0030\\u0033\\u0031", 1, writer5);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2453() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2453");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) '4');
java.io.Writer writer3 = null;
boolean boolean4 = unicodeEscaper1.translate(100, writer3);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, 1);
java.lang.String str9 = unicodeEscaper7.translate((java.lang.CharSequence) "FFFFFFFF");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str14 = unicodeEscaper12.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str19 = unicodeEscaper17.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer25 = null;
int int26 = unicodeEscaper22.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer25);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper29 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray33 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper22, unicodeEscaper28, unicodeEscaper29, unicodeEscaper32 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator34 = unicodeEscaper17.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator35 = unicodeEscaper12.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator36 = unicodeEscaper7.with(charSequenceTranslatorArray33);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper39 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, (int) 'a');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper42 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str44 = unicodeEscaper42.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper47 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str49 = unicodeEscaper47.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper52 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer55 = null;
int int56 = unicodeEscaper52.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer55);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper58 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper59 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper62 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray63 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper52, unicodeEscaper58, unicodeEscaper59, unicodeEscaper62 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator64 = unicodeEscaper47.with(charSequenceTranslatorArray63);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator65 = unicodeEscaper42.with(charSequenceTranslatorArray63);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator66 = unicodeEscaper39.with(charSequenceTranslatorArray63);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator67 = unicodeEscaper7.with(charSequenceTranslatorArray63);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator68 = unicodeEscaper1.with(charSequenceTranslatorArray63);
java.io.Writer writer70 = null;
boolean boolean71 = unicodeEscaper1.translate((int) 'a', writer70);
java.io.Writer writer73 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean74 = unicodeEscaper1.translate(1, writer73);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertTrue("'" + boolean4 + "' != '" + false + "'", boolean4 == false);
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertEquals("'" + str9 + "' != '" + "FFFFFFFF" + "'", str9, "FFFFFFFF");
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertEquals("'" + str14 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str14, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertEquals("'" + str19 + "' != '" + "hi!" + "'", str19, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertTrue("'" + int26 + "' != '" + 0 + "'", int26 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(unicodeEscaper32);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray33);
org.junit.Assert.assertNotNull(charSequenceTranslator34);
org.junit.Assert.assertNotNull(charSequenceTranslator35);
org.junit.Assert.assertNotNull(charSequenceTranslator36);
org.junit.Assert.assertNotNull(unicodeEscaper39);
org.junit.Assert.assertNotNull(unicodeEscaper42);
org.junit.Assert.assertEquals("'" + str44 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str44, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper47);
org.junit.Assert.assertEquals("'" + str49 + "' != '" + "hi!" + "'", str49, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper52);
org.junit.Assert.assertTrue("'" + int56 + "' != '" + 0 + "'", int56 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper58);
org.junit.Assert.assertNotNull(unicodeEscaper62);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray63);
org.junit.Assert.assertNotNull(charSequenceTranslator64);
org.junit.Assert.assertNotNull(charSequenceTranslator65);
org.junit.Assert.assertNotNull(charSequenceTranslator66);
org.junit.Assert.assertNotNull(charSequenceTranslator67);
org.junit.Assert.assertNotNull(charSequenceTranslator68);
org.junit.Assert.assertTrue("'" + boolean71 + "' != '" + false + "'", boolean71 == false);
}
@Test
public void test2454() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2454");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) '4');
java.lang.Class<?> wildcardClass3 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(wildcardClass3);
}
@Test
public void test2455() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2455");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, (int) (byte) -1);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0032\\u0030");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str9 = unicodeEscaper7.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str14 = unicodeEscaper12.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer20 = null;
int int21 = unicodeEscaper17.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer20);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper23 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray28 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper17, unicodeEscaper23, unicodeEscaper24, unicodeEscaper27 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator29 = unicodeEscaper12.with(charSequenceTranslatorArray28);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator30 = unicodeEscaper7.with(charSequenceTranslatorArray28);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper2.with(charSequenceTranslatorArray28);
java.lang.CharSequence charSequence32 = null;
java.io.Writer writer34 = null;
// The following exception was thrown during execution in test generation
try {
int int35 = unicodeEscaper2.translate(charSequence32, 1, writer34);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u0032\\u0030" + "'", str4, "\\u0032\\u0030");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertEquals("'" + str9 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str9, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertEquals("'" + str14 + "' != '" + "hi!" + "'", str14, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertTrue("'" + int21 + "' != '" + 0 + "'", int21 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper23);
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray28);
org.junit.Assert.assertNotNull(charSequenceTranslator29);
org.junit.Assert.assertNotNull(charSequenceTranslator30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
}
@Test
public void test2456() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2456");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 10, 0);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) 'a', writer4);
java.io.Writer writer8 = null;
int int9 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034", (int) (byte) 0, writer8);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertTrue("'" + int9 + "' != '" + 0 + "'", int9 == 0);
}
@Test
public void test2457() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2457");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(0, (int) (short) 10);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0033\\u0034");
java.io.Writer writer6 = null;
boolean boolean7 = unicodeEscaper2.translate((-1), writer6);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u0033\\u0034" + "'", str4, "\\u0033\\u0034");
org.junit.Assert.assertTrue("'" + boolean7 + "' != '" + false + "'", boolean7 == false);
}
@Test
public void test2458() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2458");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str9 = unicodeEscaper7.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer15 = null;
int int16 = unicodeEscaper12.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer15);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray23 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper12, unicodeEscaper18, unicodeEscaper19, unicodeEscaper22 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator24 = unicodeEscaper7.with(charSequenceTranslatorArray23);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator25 = unicodeEscaper2.with(charSequenceTranslatorArray23);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer31 = null;
int int32 = unicodeEscaper28.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer31);
java.io.Writer writer34 = null;
boolean boolean35 = unicodeEscaper28.translate((int) (byte) -1, writer34);
java.lang.String str37 = unicodeEscaper28.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str42 = unicodeEscaper40.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray43 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper28, unicodeEscaper40 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper2.with(charSequenceTranslatorArray43);
java.io.Writer writer47 = null;
int int48 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034", (int) '#', writer47);
java.io.Writer writer50 = null;
boolean boolean51 = unicodeEscaper2.translate((int) '#', writer50);
java.io.Writer writer53 = null;
boolean boolean54 = unicodeEscaper2.translate((int) (byte) 10, writer53);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "hi!" + "'", str4, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertEquals("'" + str9 + "' != '" + "hi!" + "'", str9, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertTrue("'" + int16 + "' != '" + 0 + "'", int16 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray23);
org.junit.Assert.assertNotNull(charSequenceTranslator24);
org.junit.Assert.assertNotNull(charSequenceTranslator25);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertTrue("'" + int32 + "' != '" + 0 + "'", int32 == 0);
org.junit.Assert.assertTrue("'" + boolean35 + "' != '" + false + "'", boolean35 == false);
org.junit.Assert.assertEquals("'" + str37 + "' != '" + "0" + "'", str37, "0");
org.junit.Assert.assertNotNull(unicodeEscaper40);
org.junit.Assert.assertEquals("'" + str42 + "' != '" + "hi!" + "'", str42, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertTrue("'" + int48 + "' != '" + 0 + "'", int48 == 0);
org.junit.Assert.assertTrue("'" + boolean51 + "' != '" + false + "'", boolean51 == false);
org.junit.Assert.assertTrue("'" + boolean54 + "' != '" + false + "'", boolean54 == false);
}
@Test
public void test2459() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2459");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) ' ', (int) '4');
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) 'a', writer4);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str10 = unicodeEscaper8.translate((java.lang.CharSequence) "hi!");
java.io.Writer writer12 = null;
boolean boolean13 = unicodeEscaper8.translate(0, writer12);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str23 = unicodeEscaper21.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str28 = unicodeEscaper26.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer34 = null;
int int35 = unicodeEscaper31.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer34);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper38 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray42 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper31, unicodeEscaper37, unicodeEscaper38, unicodeEscaper41 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator43 = unicodeEscaper26.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper21.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator45 = unicodeEscaper18.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator46 = unicodeEscaper16.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator47 = unicodeEscaper8.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator48 = unicodeEscaper2.with(charSequenceTranslatorArray42);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertEquals("'" + str10 + "' != '" + "hi!" + "'", str10, "hi!");
org.junit.Assert.assertTrue("'" + boolean13 + "' != '" + false + "'", boolean13 == false);
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertEquals("'" + str23 + "' != '" + "hi!" + "'", str23, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper26);
org.junit.Assert.assertEquals("'" + str28 + "' != '" + "hi!" + "'", str28, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertTrue("'" + int35 + "' != '" + 0 + "'", int35 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper37);
org.junit.Assert.assertNotNull(unicodeEscaper41);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray42);
org.junit.Assert.assertNotNull(charSequenceTranslator43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertNotNull(charSequenceTranslator45);
org.junit.Assert.assertNotNull(charSequenceTranslator46);
org.junit.Assert.assertNotNull(charSequenceTranslator47);
org.junit.Assert.assertNotNull(charSequenceTranslator48);
}
@Test
public void test2460() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2460");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 1);
java.io.Writer writer4 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0031", writer4);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2461() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2461");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\\\u007500750068\\\\\\u007500750069\\\\\\u007500750021");
java.lang.String str6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0032\\u0033");
java.io.Writer writer8 = null;
boolean boolean9 = unicodeEscaper2.translate((int) '#', writer8);
java.io.Writer writer11 = null;
boolean boolean12 = unicodeEscaper2.translate((-1), writer11);
java.lang.String str14 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0038\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0039\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
java.io.Writer writer17 = null;
// The following exception was thrown during execution in test generation
try {
int int18 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036", (int) (short) -1, writer17);
org.junit.Assert.fail("Expected exception of type java.lang.StringIndexOutOfBoundsException; message: String index out of range: -1");
} catch (java.lang.StringIndexOutOfBoundsException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\\\\\u007500750068\\\\\\u007500750069\\\\\\u007500750021" + "'", str4, "\\\\\\u007500750068\\\\\\u007500750069\\\\\\u007500750021");
org.junit.Assert.assertEquals("'" + str6 + "' != '" + "\\u0032\\u0033" + "'", str6, "\\u0032\\u0033");
org.junit.Assert.assertTrue("'" + boolean9 + "' != '" + false + "'", boolean9 == false);
org.junit.Assert.assertTrue("'" + boolean12 + "' != '" + false + "'", boolean12 == false);
org.junit.Assert.assertEquals("'" + str14 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0038\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0039\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031" + "'", str14, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0038\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0039\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
}
@Test
public void test2462() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2462");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 100, (int) '#');
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2463() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2463");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper4 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 0, (-1));
java.io.Writer writer7 = null;
int int8 = unicodeEscaper4.translate((java.lang.CharSequence) "6\\u0031", 0, writer7);
java.io.Writer writer11 = null;
int int12 = unicodeEscaper4.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030", 100, writer11);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 0, (int) (byte) -1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) -1, 0);
java.lang.String str20 = unicodeEscaper18.translate((java.lang.CharSequence) "1");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper23 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str25 = unicodeEscaper23.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str30 = unicodeEscaper28.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper33 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer36 = null;
int int37 = unicodeEscaper33.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer36);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper39 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper43 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray44 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper33, unicodeEscaper39, unicodeEscaper40, unicodeEscaper43 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator45 = unicodeEscaper28.with(charSequenceTranslatorArray44);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator46 = unicodeEscaper23.with(charSequenceTranslatorArray44);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper49 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer52 = null;
int int53 = unicodeEscaper49.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer52);
java.io.Writer writer55 = null;
boolean boolean56 = unicodeEscaper49.translate((int) (byte) -1, writer55);
java.lang.String str58 = unicodeEscaper49.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper61 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str63 = unicodeEscaper61.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray64 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper49, unicodeEscaper61 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator65 = unicodeEscaper23.with(charSequenceTranslatorArray64);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator66 = unicodeEscaper18.with(charSequenceTranslatorArray64);
java.lang.String str68 = unicodeEscaper18.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0036\\u0038\\u005C\\u0075\\u0030\\u0030\\u0036\\u0039\\u005C\\u0075\\u0030\\u0030\\u0032\\u0031");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper71 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) 'a', (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper74 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str76 = unicodeEscaper74.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper79 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer82 = null;
int int83 = unicodeEscaper79.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer82);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper85 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper86 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper89 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray90 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper79, unicodeEscaper85, unicodeEscaper86, unicodeEscaper89 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator91 = unicodeEscaper74.with(charSequenceTranslatorArray90);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator92 = unicodeEscaper71.with(charSequenceTranslatorArray90);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator93 = unicodeEscaper18.with(charSequenceTranslatorArray90);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator94 = unicodeEscaper15.with(charSequenceTranslatorArray90);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator95 = unicodeEscaper4.with(charSequenceTranslatorArray90);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator96 = unicodeEscaper1.with(charSequenceTranslatorArray90);
java.lang.Class<?> wildcardClass97 = charSequenceTranslator96.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertNotNull(unicodeEscaper4);
org.junit.Assert.assertTrue("'" + int8 + "' != '" + 0 + "'", int8 == 0);
org.junit.Assert.assertTrue("'" + int12 + "' != '" + 0 + "'", int12 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertEquals("'" + str20 + "' != '" + "\\u0031" + "'", str20, "\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper23);
org.junit.Assert.assertEquals("'" + str25 + "' != '" + "hi!" + "'", str25, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertEquals("'" + str30 + "' != '" + "hi!" + "'", str30, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper33);
org.junit.Assert.assertTrue("'" + int37 + "' != '" + 0 + "'", int37 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper39);
org.junit.Assert.assertNotNull(unicodeEscaper43);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray44);
org.junit.Assert.assertNotNull(charSequenceTranslator45);
org.junit.Assert.assertNotNull(charSequenceTranslator46);
org.junit.Assert.assertNotNull(unicodeEscaper49);
org.junit.Assert.assertTrue("'" + int53 + "' != '" + 0 + "'", int53 == 0);
org.junit.Assert.assertTrue("'" + boolean56 + "' != '" + false + "'", boolean56 == false);
org.junit.Assert.assertEquals("'" + str58 + "' != '" + "0" + "'", str58, "0");
org.junit.Assert.assertNotNull(unicodeEscaper61);
org.junit.Assert.assertEquals("'" + str63 + "' != '" + "hi!" + "'", str63, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray64);
org.junit.Assert.assertNotNull(charSequenceTranslator65);
org.junit.Assert.assertNotNull(charSequenceTranslator66);
org.junit.Assert.assertEquals("'" + str68 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0038\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0039\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031" + "'", str68, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0038\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0039\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper71);
org.junit.Assert.assertNotNull(unicodeEscaper74);
org.junit.Assert.assertEquals("'" + str76 + "' != '" + "hi!" + "'", str76, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper79);
org.junit.Assert.assertTrue("'" + int83 + "' != '" + 0 + "'", int83 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper85);
org.junit.Assert.assertNotNull(unicodeEscaper89);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray90);
org.junit.Assert.assertNotNull(charSequenceTranslator91);
org.junit.Assert.assertNotNull(charSequenceTranslator92);
org.junit.Assert.assertNotNull(charSequenceTranslator93);
org.junit.Assert.assertNotNull(charSequenceTranslator94);
org.junit.Assert.assertNotNull(charSequenceTranslator95);
org.junit.Assert.assertNotNull(charSequenceTranslator96);
org.junit.Assert.assertNotNull(wildcardClass97);
}
@Test
public void test2464() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2464");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 1, (int) (short) -1);
java.io.Writer writer4 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean5 = unicodeEscaper2.translate((int) (short) -1, writer4);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2465() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2465");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 10, (int) (byte) 0);
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2466() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2466");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 1);
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030", (int) (short) 100, writer5);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper9 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(10, (int) (byte) 0);
java.io.Writer writer11 = null;
boolean boolean12 = unicodeEscaper9.translate(0, writer11);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str19 = unicodeEscaper17.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str24 = unicodeEscaper22.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer30 = null;
int int31 = unicodeEscaper27.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer30);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper33 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper34 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray38 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper27, unicodeEscaper33, unicodeEscaper34, unicodeEscaper37 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator39 = unicodeEscaper22.with(charSequenceTranslatorArray38);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator40 = unicodeEscaper17.with(charSequenceTranslatorArray38);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator41 = unicodeEscaper14.with(charSequenceTranslatorArray38);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator42 = unicodeEscaper9.with(charSequenceTranslatorArray38);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator43 = unicodeEscaper2.with(charSequenceTranslatorArray38);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper9);
org.junit.Assert.assertTrue("'" + boolean12 + "' != '" + false + "'", boolean12 == false);
org.junit.Assert.assertNotNull(unicodeEscaper14);
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertEquals("'" + str19 + "' != '" + "hi!" + "'", str19, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertEquals("'" + str24 + "' != '" + "hi!" + "'", str24, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertTrue("'" + int31 + "' != '" + 0 + "'", int31 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper33);
org.junit.Assert.assertNotNull(unicodeEscaper37);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray38);
org.junit.Assert.assertNotNull(charSequenceTranslator39);
org.junit.Assert.assertNotNull(charSequenceTranslator40);
org.junit.Assert.assertNotNull(charSequenceTranslator41);
org.junit.Assert.assertNotNull(charSequenceTranslator42);
org.junit.Assert.assertNotNull(charSequenceTranslator43);
}
@Test
public void test2467() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2467");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 100, (int) (short) 1);
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2468() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2468");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', 1);
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2469() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2469");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) -1, (int) (short) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033");
java.io.Writer writer6 = null;
boolean boolean7 = unicodeEscaper2.translate((-1), writer6);
java.io.Writer writer9 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean10 = unicodeEscaper2.translate((int) (byte) 1, writer9);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033" + "'", str4, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033");
org.junit.Assert.assertTrue("'" + boolean7 + "' != '" + false + "'", boolean7 == false);
}
@Test
public void test2470() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2470");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 10, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper4 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer9 = null;
boolean boolean10 = unicodeEscaper7.translate((int) (short) 0, writer9);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray14 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper7, unicodeEscaper11, unicodeEscaper13 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator15 = unicodeEscaper4.with(charSequenceTranslatorArray14);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator16 = unicodeEscaper2.with(charSequenceTranslatorArray14);
java.io.Writer writer19 = null;
int int20 = unicodeEscaper2.translate((java.lang.CharSequence) "FFFFFFFF", (int) (short) 1, writer19);
java.io.Writer writer23 = null;
int int24 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036\\u005C\\u0075\\u0030\\u0030\\u0034\\u0036", (int) (byte) 0, writer23);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str32 = unicodeEscaper30.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer38 = null;
int int39 = unicodeEscaper35.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer38);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper42 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper45 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray46 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper35, unicodeEscaper41, unicodeEscaper42, unicodeEscaper45 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator47 = unicodeEscaper30.with(charSequenceTranslatorArray46);
java.lang.String str49 = unicodeEscaper30.translate((java.lang.CharSequence) "");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper52 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str54 = unicodeEscaper52.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str59 = unicodeEscaper57.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper62 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer65 = null;
int int66 = unicodeEscaper62.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer65);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper68 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper69 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper72 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray73 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper62, unicodeEscaper68, unicodeEscaper69, unicodeEscaper72 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator74 = unicodeEscaper57.with(charSequenceTranslatorArray73);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator75 = unicodeEscaper52.with(charSequenceTranslatorArray73);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper77 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper80 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer82 = null;
boolean boolean83 = unicodeEscaper80.translate((int) (short) 0, writer82);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper84 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper86 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray87 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper80, unicodeEscaper84, unicodeEscaper86 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator88 = unicodeEscaper77.with(charSequenceTranslatorArray87);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator89 = charSequenceTranslator75.with(charSequenceTranslatorArray87);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator90 = unicodeEscaper30.with(charSequenceTranslatorArray87);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator91 = unicodeEscaper27.with(charSequenceTranslatorArray87);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator92 = unicodeEscaper2.with(charSequenceTranslatorArray87);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper4);
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertTrue("'" + boolean10 + "' != '" + false + "'", boolean10 == false);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray14);
org.junit.Assert.assertNotNull(charSequenceTranslator15);
org.junit.Assert.assertNotNull(charSequenceTranslator16);
org.junit.Assert.assertTrue("'" + int20 + "' != '" + 0 + "'", int20 == 0);
org.junit.Assert.assertTrue("'" + int24 + "' != '" + 0 + "'", int24 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertEquals("'" + str32 + "' != '" + "hi!" + "'", str32, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper35);
org.junit.Assert.assertTrue("'" + int39 + "' != '" + 0 + "'", int39 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper41);
org.junit.Assert.assertNotNull(unicodeEscaper45);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray46);
org.junit.Assert.assertNotNull(charSequenceTranslator47);
org.junit.Assert.assertEquals("'" + str49 + "' != '" + "" + "'", str49, "");
org.junit.Assert.assertNotNull(unicodeEscaper52);
org.junit.Assert.assertEquals("'" + str54 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str54, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper57);
org.junit.Assert.assertEquals("'" + str59 + "' != '" + "hi!" + "'", str59, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper62);
org.junit.Assert.assertTrue("'" + int66 + "' != '" + 0 + "'", int66 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper68);
org.junit.Assert.assertNotNull(unicodeEscaper72);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray73);
org.junit.Assert.assertNotNull(charSequenceTranslator74);
org.junit.Assert.assertNotNull(charSequenceTranslator75);
org.junit.Assert.assertNotNull(unicodeEscaper77);
org.junit.Assert.assertNotNull(unicodeEscaper80);
org.junit.Assert.assertTrue("'" + boolean83 + "' != '" + false + "'", boolean83 == false);
org.junit.Assert.assertNotNull(unicodeEscaper86);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray87);
org.junit.Assert.assertNotNull(charSequenceTranslator88);
org.junit.Assert.assertNotNull(charSequenceTranslator89);
org.junit.Assert.assertNotNull(charSequenceTranslator90);
org.junit.Assert.assertNotNull(charSequenceTranslator91);
org.junit.Assert.assertNotNull(charSequenceTranslator92);
}
@Test
public void test2471() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2471");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 0, (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str10 = unicodeEscaper8.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str15 = unicodeEscaper13.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer21 = null;
int int22 = unicodeEscaper18.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer21);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray29 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper18, unicodeEscaper24, unicodeEscaper25, unicodeEscaper28 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator30 = unicodeEscaper13.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper8.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator32 = unicodeEscaper5.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper2.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(1, (int) 'a');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper39 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper42 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, 1);
java.io.Writer writer45 = null;
int int46 = unicodeEscaper42.translate((java.lang.CharSequence) "61", (int) (short) 0, writer45);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper49 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (byte) 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper52 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str54 = unicodeEscaper52.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str59 = unicodeEscaper57.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper62 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer65 = null;
int int66 = unicodeEscaper62.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer65);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper68 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper69 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper72 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray73 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper62, unicodeEscaper68, unicodeEscaper69, unicodeEscaper72 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator74 = unicodeEscaper57.with(charSequenceTranslatorArray73);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator75 = unicodeEscaper52.with(charSequenceTranslatorArray73);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator76 = unicodeEscaper49.with(charSequenceTranslatorArray73);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator77 = unicodeEscaper42.with(charSequenceTranslatorArray73);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator78 = unicodeEscaper39.with(charSequenceTranslatorArray73);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator79 = unicodeEscaper36.with(charSequenceTranslatorArray73);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator80 = unicodeEscaper2.with(charSequenceTranslatorArray73);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertEquals("'" + str10 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str10, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertEquals("'" + str15 + "' != '" + "hi!" + "'", str15, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertTrue("'" + int22 + "' != '" + 0 + "'", int22 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray29);
org.junit.Assert.assertNotNull(charSequenceTranslator30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
org.junit.Assert.assertNotNull(charSequenceTranslator32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
org.junit.Assert.assertNotNull(unicodeEscaper36);
org.junit.Assert.assertNotNull(unicodeEscaper39);
org.junit.Assert.assertNotNull(unicodeEscaper42);
org.junit.Assert.assertTrue("'" + int46 + "' != '" + 0 + "'", int46 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper49);
org.junit.Assert.assertNotNull(unicodeEscaper52);
org.junit.Assert.assertEquals("'" + str54 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str54, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper57);
org.junit.Assert.assertEquals("'" + str59 + "' != '" + "hi!" + "'", str59, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper62);
org.junit.Assert.assertTrue("'" + int66 + "' != '" + 0 + "'", int66 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper68);
org.junit.Assert.assertNotNull(unicodeEscaper72);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray73);
org.junit.Assert.assertNotNull(charSequenceTranslator74);
org.junit.Assert.assertNotNull(charSequenceTranslator75);
org.junit.Assert.assertNotNull(charSequenceTranslator76);
org.junit.Assert.assertNotNull(charSequenceTranslator77);
org.junit.Assert.assertNotNull(charSequenceTranslator78);
org.junit.Assert.assertNotNull(charSequenceTranslator79);
org.junit.Assert.assertNotNull(charSequenceTranslator80);
}
@Test
public void test2472() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2472");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) '4', (int) (byte) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str12 = unicodeEscaper10.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer18 = null;
int int19 = unicodeEscaper15.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer18);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray26 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper15, unicodeEscaper21, unicodeEscaper22, unicodeEscaper25 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator27 = unicodeEscaper10.with(charSequenceTranslatorArray26);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator28 = unicodeEscaper5.with(charSequenceTranslatorArray26);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer34 = null;
int int35 = unicodeEscaper31.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer34);
java.io.Writer writer37 = null;
boolean boolean38 = unicodeEscaper31.translate((int) (byte) -1, writer37);
java.lang.String str40 = unicodeEscaper31.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper43 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str45 = unicodeEscaper43.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray46 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper31, unicodeEscaper43 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator47 = unicodeEscaper5.with(charSequenceTranslatorArray46);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator48 = unicodeEscaper2.with(charSequenceTranslatorArray46);
java.lang.String str50 = charSequenceTranslator48.translate((java.lang.CharSequence) "0");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "hi!" + "'", str7, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertEquals("'" + str12 + "' != '" + "hi!" + "'", str12, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertTrue("'" + int19 + "' != '" + 0 + "'", int19 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertNotNull(unicodeEscaper25);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray26);
org.junit.Assert.assertNotNull(charSequenceTranslator27);
org.junit.Assert.assertNotNull(charSequenceTranslator28);
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertTrue("'" + int35 + "' != '" + 0 + "'", int35 == 0);
org.junit.Assert.assertTrue("'" + boolean38 + "' != '" + false + "'", boolean38 == false);
org.junit.Assert.assertEquals("'" + str40 + "' != '" + "0" + "'", str40, "0");
org.junit.Assert.assertNotNull(unicodeEscaper43);
org.junit.Assert.assertEquals("'" + str45 + "' != '" + "hi!" + "'", str45, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray46);
org.junit.Assert.assertNotNull(charSequenceTranslator47);
org.junit.Assert.assertNotNull(charSequenceTranslator48);
org.junit.Assert.assertEquals("'" + str50 + "' != '" + "\\u0030" + "'", str50, "\\u0030");
}
@Test
public void test2473() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2473");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) -1, 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(0, (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, (int) 'a');
java.lang.String str10 = unicodeEscaper8.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, 1);
java.lang.String str15 = unicodeEscaper13.translate((java.lang.CharSequence) "FFFFFFFF");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str20 = unicodeEscaper18.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper23 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str25 = unicodeEscaper23.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer31 = null;
int int32 = unicodeEscaper28.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer31);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper34 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper38 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray39 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper28, unicodeEscaper34, unicodeEscaper35, unicodeEscaper38 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator40 = unicodeEscaper23.with(charSequenceTranslatorArray39);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator41 = unicodeEscaper18.with(charSequenceTranslatorArray39);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator42 = unicodeEscaper13.with(charSequenceTranslatorArray39);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator43 = unicodeEscaper8.with(charSequenceTranslatorArray39);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper5.with(charSequenceTranslatorArray39);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper47 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 10, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper49 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper52 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer54 = null;
boolean boolean55 = unicodeEscaper52.translate((int) (short) 0, writer54);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper56 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper58 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray59 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper52, unicodeEscaper56, unicodeEscaper58 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator60 = unicodeEscaper49.with(charSequenceTranslatorArray59);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator61 = unicodeEscaper47.with(charSequenceTranslatorArray59);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator62 = charSequenceTranslator44.with(charSequenceTranslatorArray59);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator63 = unicodeEscaper2.with(charSequenceTranslatorArray59);
java.lang.String str65 = charSequenceTranslator63.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertEquals("'" + str10 + "' != '" + "0" + "'", str10, "0");
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertEquals("'" + str15 + "' != '" + "FFFFFFFF" + "'", str15, "FFFFFFFF");
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertEquals("'" + str20 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str20, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper23);
org.junit.Assert.assertEquals("'" + str25 + "' != '" + "hi!" + "'", str25, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertTrue("'" + int32 + "' != '" + 0 + "'", int32 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper34);
org.junit.Assert.assertNotNull(unicodeEscaper38);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray39);
org.junit.Assert.assertNotNull(charSequenceTranslator40);
org.junit.Assert.assertNotNull(charSequenceTranslator41);
org.junit.Assert.assertNotNull(charSequenceTranslator42);
org.junit.Assert.assertNotNull(charSequenceTranslator43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertNotNull(unicodeEscaper47);
org.junit.Assert.assertNotNull(unicodeEscaper49);
org.junit.Assert.assertNotNull(unicodeEscaper52);
org.junit.Assert.assertTrue("'" + boolean55 + "' != '" + false + "'", boolean55 == false);
org.junit.Assert.assertNotNull(unicodeEscaper58);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray59);
org.junit.Assert.assertNotNull(charSequenceTranslator60);
org.junit.Assert.assertNotNull(charSequenceTranslator61);
org.junit.Assert.assertNotNull(charSequenceTranslator62);
org.junit.Assert.assertNotNull(charSequenceTranslator63);
org.junit.Assert.assertEquals("'" + str65 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033" + "'", str65, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033");
}
@Test
public void test2474() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2474");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str9 = unicodeEscaper7.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer15 = null;
int int16 = unicodeEscaper12.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer15);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray23 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper12, unicodeEscaper18, unicodeEscaper19, unicodeEscaper22 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator24 = unicodeEscaper7.with(charSequenceTranslatorArray23);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator25 = unicodeEscaper2.with(charSequenceTranslatorArray23);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer31 = null;
int int32 = unicodeEscaper28.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer31);
java.io.Writer writer34 = null;
boolean boolean35 = unicodeEscaper28.translate((int) (byte) -1, writer34);
java.lang.String str37 = unicodeEscaper28.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str42 = unicodeEscaper40.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray43 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper28, unicodeEscaper40 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper2.with(charSequenceTranslatorArray43);
java.lang.Class<?> wildcardClass45 = charSequenceTranslatorArray43.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "hi!" + "'", str4, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertEquals("'" + str9 + "' != '" + "hi!" + "'", str9, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertTrue("'" + int16 + "' != '" + 0 + "'", int16 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray23);
org.junit.Assert.assertNotNull(charSequenceTranslator24);
org.junit.Assert.assertNotNull(charSequenceTranslator25);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertTrue("'" + int32 + "' != '" + 0 + "'", int32 == 0);
org.junit.Assert.assertTrue("'" + boolean35 + "' != '" + false + "'", boolean35 == false);
org.junit.Assert.assertEquals("'" + str37 + "' != '" + "0" + "'", str37, "0");
org.junit.Assert.assertNotNull(unicodeEscaper40);
org.junit.Assert.assertEquals("'" + str42 + "' != '" + "hi!" + "'", str42, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertNotNull(wildcardClass45);
}
@Test
public void test2475() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2475");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(100, 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '#', (int) (short) 1);
java.lang.String str7 = unicodeEscaper5.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(10, (int) (short) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, 1);
java.lang.String str15 = unicodeEscaper13.translate((java.lang.CharSequence) "FFFFFFFF");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str20 = unicodeEscaper18.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper23 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str25 = unicodeEscaper23.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer31 = null;
int int32 = unicodeEscaper28.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer31);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper34 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper38 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray39 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper28, unicodeEscaper34, unicodeEscaper35, unicodeEscaper38 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator40 = unicodeEscaper23.with(charSequenceTranslatorArray39);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator41 = unicodeEscaper18.with(charSequenceTranslatorArray39);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator42 = unicodeEscaper13.with(charSequenceTranslatorArray39);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator43 = unicodeEscaper10.with(charSequenceTranslatorArray39);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper5.with(charSequenceTranslatorArray39);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator45 = unicodeEscaper2.with(charSequenceTranslatorArray39);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertEquals("'" + str7 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034" + "'", str7, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertEquals("'" + str15 + "' != '" + "FFFFFFFF" + "'", str15, "FFFFFFFF");
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertEquals("'" + str20 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str20, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper23);
org.junit.Assert.assertEquals("'" + str25 + "' != '" + "hi!" + "'", str25, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertTrue("'" + int32 + "' != '" + 0 + "'", int32 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper34);
org.junit.Assert.assertNotNull(unicodeEscaper38);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray39);
org.junit.Assert.assertNotNull(charSequenceTranslator40);
org.junit.Assert.assertNotNull(charSequenceTranslator41);
org.junit.Assert.assertNotNull(charSequenceTranslator42);
org.junit.Assert.assertNotNull(charSequenceTranslator43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertNotNull(charSequenceTranslator45);
}
@Test
public void test2476() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2476");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((-1), (int) (short) -1);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "6\\\\u00750031");
java.lang.Class<?> wildcardClass5 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u0036\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0031" + "'", str4, "\\u0036\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0031");
org.junit.Assert.assertNotNull(wildcardClass5);
}
@Test
public void test2477() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2477");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) -1, (int) '#');
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) ' ', writer4);
java.io.Writer writer7 = null;
boolean boolean8 = unicodeEscaper2.translate((int) (short) 1, writer7);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertTrue("'" + boolean8 + "' != '" + false + "'", boolean8 == false);
}
@Test
public void test2478() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2478");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper1 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) 1);
java.io.Writer writer3 = null;
boolean boolean4 = unicodeEscaper1.translate((int) '#', writer3);
java.io.Writer writer6 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper1.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0037\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030", writer6);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper1);
org.junit.Assert.assertTrue("'" + boolean4 + "' != '" + false + "'", boolean4 == false);
}
@Test
public void test2479() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2479");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(10, (int) (byte) 0);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate(0, writer4);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper10 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str12 = unicodeEscaper10.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str17 = unicodeEscaper15.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper20 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer23 = null;
int int24 = unicodeEscaper20.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer23);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper30 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray31 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper20, unicodeEscaper26, unicodeEscaper27, unicodeEscaper30 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator32 = unicodeEscaper15.with(charSequenceTranslatorArray31);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper10.with(charSequenceTranslatorArray31);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator34 = unicodeEscaper7.with(charSequenceTranslatorArray31);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator35 = unicodeEscaper2.with(charSequenceTranslatorArray31);
java.lang.Class<?> wildcardClass36 = charSequenceTranslator35.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertNotNull(unicodeEscaper10);
org.junit.Assert.assertEquals("'" + str12 + "' != '" + "hi!" + "'", str12, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertEquals("'" + str17 + "' != '" + "hi!" + "'", str17, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper20);
org.junit.Assert.assertTrue("'" + int24 + "' != '" + 0 + "'", int24 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper26);
org.junit.Assert.assertNotNull(unicodeEscaper30);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray31);
org.junit.Assert.assertNotNull(charSequenceTranslator32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
org.junit.Assert.assertNotNull(charSequenceTranslator34);
org.junit.Assert.assertNotNull(charSequenceTranslator35);
org.junit.Assert.assertNotNull(wildcardClass36);
}
@Test
public void test2480() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2480");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str9 = unicodeEscaper7.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer15 = null;
int int16 = unicodeEscaper12.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer15);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray23 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper12, unicodeEscaper18, unicodeEscaper19, unicodeEscaper22 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator24 = unicodeEscaper7.with(charSequenceTranslatorArray23);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator25 = unicodeEscaper2.with(charSequenceTranslatorArray23);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer31 = null;
int int32 = unicodeEscaper28.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer31);
java.io.Writer writer34 = null;
boolean boolean35 = unicodeEscaper28.translate((int) (byte) -1, writer34);
java.lang.String str37 = unicodeEscaper28.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str42 = unicodeEscaper40.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray43 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper28, unicodeEscaper40 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper2.with(charSequenceTranslatorArray43);
java.lang.String str46 = unicodeEscaper2.translate((java.lang.CharSequence) "");
java.io.Writer writer49 = null;
int int50 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0034\\u0031", 0, writer49);
java.io.Writer writer52 = null;
boolean boolean53 = unicodeEscaper2.translate(1, writer52);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "hi!" + "'", str4, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertEquals("'" + str9 + "' != '" + "hi!" + "'", str9, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertTrue("'" + int16 + "' != '" + 0 + "'", int16 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray23);
org.junit.Assert.assertNotNull(charSequenceTranslator24);
org.junit.Assert.assertNotNull(charSequenceTranslator25);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertTrue("'" + int32 + "' != '" + 0 + "'", int32 == 0);
org.junit.Assert.assertTrue("'" + boolean35 + "' != '" + false + "'", boolean35 == false);
org.junit.Assert.assertEquals("'" + str37 + "' != '" + "0" + "'", str37, "0");
org.junit.Assert.assertNotNull(unicodeEscaper40);
org.junit.Assert.assertEquals("'" + str42 + "' != '" + "hi!" + "'", str42, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertEquals("'" + str46 + "' != '" + "" + "'", str46, "");
org.junit.Assert.assertTrue("'" + int50 + "' != '" + 0 + "'", int50 == 0);
org.junit.Assert.assertTrue("'" + boolean53 + "' != '" + false + "'", boolean53 == false);
}
@Test
public void test2481() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2481");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 1, (int) (byte) 0);
java.io.Writer writer5 = null;
int int6 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\\\u007500750068\\\\\\u007500750069\\\\\\u007500750021", (int) (byte) 0, writer5);
java.lang.String str8 = unicodeEscaper2.translate((java.lang.CharSequence) "20");
java.io.Writer writer11 = null;
int int12 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031", 0, writer11);
java.io.Writer writer14 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0032\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033", writer14);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + int6 + "' != '" + 0 + "'", int6 == 0);
org.junit.Assert.assertEquals("'" + str8 + "' != '" + "20" + "'", str8, "20");
org.junit.Assert.assertTrue("'" + int12 + "' != '" + 0 + "'", int12 == 0);
}
@Test
public void test2482() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2482");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) 'a', (int) (short) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper5 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((-1), (int) (byte) 10);
java.io.Writer writer8 = null;
int int9 = unicodeEscaper5.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0035\\u0043\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0037\\u0035\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0030", 1, writer8);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer14 = null;
boolean boolean15 = unicodeEscaper12.translate((int) (short) 0, writer14);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str20 = unicodeEscaper18.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper23 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str25 = unicodeEscaper23.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer31 = null;
int int32 = unicodeEscaper28.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer31);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper34 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper38 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray39 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper28, unicodeEscaper34, unicodeEscaper35, unicodeEscaper38 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator40 = unicodeEscaper23.with(charSequenceTranslatorArray39);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator41 = unicodeEscaper18.with(charSequenceTranslatorArray39);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator42 = unicodeEscaper12.with(charSequenceTranslatorArray39);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator43 = unicodeEscaper5.with(charSequenceTranslatorArray39);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper2.with(charSequenceTranslatorArray39);
java.lang.String str46 = unicodeEscaper2.translate((java.lang.CharSequence) "A");
java.lang.String str48 = unicodeEscaper2.translate((java.lang.CharSequence) "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper5);
org.junit.Assert.assertTrue("'" + int9 + "' != '" + 0 + "'", int9 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertTrue("'" + boolean15 + "' != '" + false + "'", boolean15 == false);
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertEquals("'" + str20 + "' != '" + "hi!" + "'", str20, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper23);
org.junit.Assert.assertEquals("'" + str25 + "' != '" + "hi!" + "'", str25, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertTrue("'" + int32 + "' != '" + 0 + "'", int32 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper34);
org.junit.Assert.assertNotNull(unicodeEscaper38);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray39);
org.junit.Assert.assertNotNull(charSequenceTranslator40);
org.junit.Assert.assertNotNull(charSequenceTranslator41);
org.junit.Assert.assertNotNull(charSequenceTranslator42);
org.junit.Assert.assertNotNull(charSequenceTranslator43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertEquals("'" + str46 + "' != '" + "A" + "'", str46, "A");
org.junit.Assert.assertEquals("'" + str48 + "' != '" + "hi!" + "'", str48, "hi!");
}
@Test
public void test2483() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2483");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (int) (byte) 0);
java.lang.Class<?> wildcardClass3 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(wildcardClass3);
}
@Test
public void test2484() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2484");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer10 = null;
int int11 = unicodeEscaper7.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray18 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper7, unicodeEscaper13, unicodeEscaper14, unicodeEscaper17 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator19 = unicodeEscaper2.with(charSequenceTranslatorArray18);
java.lang.String str21 = unicodeEscaper2.translate((java.lang.CharSequence) "");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str26 = unicodeEscaper24.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper29 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str31 = unicodeEscaper29.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper34 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer37 = null;
int int38 = unicodeEscaper34.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer37);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper44 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray45 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper34, unicodeEscaper40, unicodeEscaper41, unicodeEscaper44 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator46 = unicodeEscaper29.with(charSequenceTranslatorArray45);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator47 = unicodeEscaper24.with(charSequenceTranslatorArray45);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper49 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper52 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer54 = null;
boolean boolean55 = unicodeEscaper52.translate((int) (short) 0, writer54);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper56 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper58 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray59 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper52, unicodeEscaper56, unicodeEscaper58 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator60 = unicodeEscaper49.with(charSequenceTranslatorArray59);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator61 = charSequenceTranslator47.with(charSequenceTranslatorArray59);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator62 = unicodeEscaper2.with(charSequenceTranslatorArray59);
java.io.Writer writer64 = null;
boolean boolean65 = unicodeEscaper2.translate((-1), writer64);
java.io.Writer writer67 = null;
boolean boolean68 = unicodeEscaper2.translate(1, writer67);
java.io.Writer writer70 = null;
boolean boolean71 = unicodeEscaper2.translate((int) ' ', writer70);
java.io.Writer writer74 = null;
int int75 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750036\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750035\\\\u00750043\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750037\\\\u00750035\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750030\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750033\\\\u0075005C\\\\u00750075\\\\u00750030\\\\u00750030\\\\u00750033\\\\u00750031", (int) ' ', writer74);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "hi!" + "'", str4, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertTrue("'" + int11 + "' != '" + 0 + "'", int11 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray18);
org.junit.Assert.assertNotNull(charSequenceTranslator19);
org.junit.Assert.assertEquals("'" + str21 + "' != '" + "" + "'", str21, "");
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertEquals("'" + str26 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str26, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper29);
org.junit.Assert.assertEquals("'" + str31 + "' != '" + "hi!" + "'", str31, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper34);
org.junit.Assert.assertTrue("'" + int38 + "' != '" + 0 + "'", int38 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper40);
org.junit.Assert.assertNotNull(unicodeEscaper44);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray45);
org.junit.Assert.assertNotNull(charSequenceTranslator46);
org.junit.Assert.assertNotNull(charSequenceTranslator47);
org.junit.Assert.assertNotNull(unicodeEscaper49);
org.junit.Assert.assertNotNull(unicodeEscaper52);
org.junit.Assert.assertTrue("'" + boolean55 + "' != '" + false + "'", boolean55 == false);
org.junit.Assert.assertNotNull(unicodeEscaper58);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray59);
org.junit.Assert.assertNotNull(charSequenceTranslator60);
org.junit.Assert.assertNotNull(charSequenceTranslator61);
org.junit.Assert.assertNotNull(charSequenceTranslator62);
org.junit.Assert.assertTrue("'" + boolean65 + "' != '" + false + "'", boolean65 == false);
org.junit.Assert.assertTrue("'" + boolean68 + "' != '" + false + "'", boolean68 == false);
org.junit.Assert.assertTrue("'" + boolean71 + "' != '" + false + "'", boolean71 == false);
org.junit.Assert.assertTrue("'" + int75 + "' != '" + 0 + "'", int75 == 0);
}
@Test
public void test2485() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2485");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str9 = unicodeEscaper7.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer15 = null;
int int16 = unicodeEscaper12.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer15);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray23 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper12, unicodeEscaper18, unicodeEscaper19, unicodeEscaper22 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator24 = unicodeEscaper7.with(charSequenceTranslatorArray23);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator25 = unicodeEscaper2.with(charSequenceTranslatorArray23);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer31 = null;
int int32 = unicodeEscaper28.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer31);
java.io.Writer writer34 = null;
boolean boolean35 = unicodeEscaper28.translate((int) (byte) -1, writer34);
java.lang.String str37 = unicodeEscaper28.translate((java.lang.CharSequence) "0");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper40 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str42 = unicodeEscaper40.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray43 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper28, unicodeEscaper40 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper2.with(charSequenceTranslatorArray43);
java.lang.String str46 = unicodeEscaper2.translate((java.lang.CharSequence) "");
java.lang.String str48 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0068\\u0069\\u0021");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper51 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper54 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(10, 10);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper57 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(0, 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper60 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) ' ', (int) '#');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper63 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str65 = unicodeEscaper63.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper68 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer71 = null;
int int72 = unicodeEscaper68.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer71);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper74 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper75 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper78 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray79 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper68, unicodeEscaper74, unicodeEscaper75, unicodeEscaper78 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator80 = unicodeEscaper63.with(charSequenceTranslatorArray79);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator81 = unicodeEscaper60.with(charSequenceTranslatorArray79);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator82 = unicodeEscaper57.with(charSequenceTranslatorArray79);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator83 = unicodeEscaper54.with(charSequenceTranslatorArray79);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator84 = unicodeEscaper51.with(charSequenceTranslatorArray79);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator85 = unicodeEscaper2.with(charSequenceTranslatorArray79);
java.io.Writer writer87 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0034\\u0031", writer87);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "hi!" + "'", str4, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertEquals("'" + str9 + "' != '" + "hi!" + "'", str9, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertTrue("'" + int16 + "' != '" + 0 + "'", int16 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray23);
org.junit.Assert.assertNotNull(charSequenceTranslator24);
org.junit.Assert.assertNotNull(charSequenceTranslator25);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertTrue("'" + int32 + "' != '" + 0 + "'", int32 == 0);
org.junit.Assert.assertTrue("'" + boolean35 + "' != '" + false + "'", boolean35 == false);
org.junit.Assert.assertEquals("'" + str37 + "' != '" + "0" + "'", str37, "0");
org.junit.Assert.assertNotNull(unicodeEscaper40);
org.junit.Assert.assertEquals("'" + str42 + "' != '" + "hi!" + "'", str42, "hi!");
org.junit.Assert.assertNotNull(charSequenceTranslatorArray43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertEquals("'" + str46 + "' != '" + "" + "'", str46, "");
org.junit.Assert.assertEquals("'" + str48 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str48, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper51);
org.junit.Assert.assertNotNull(unicodeEscaper54);
org.junit.Assert.assertNotNull(unicodeEscaper57);
org.junit.Assert.assertNotNull(unicodeEscaper60);
org.junit.Assert.assertNotNull(unicodeEscaper63);
org.junit.Assert.assertEquals("'" + str65 + "' != '" + "hi!" + "'", str65, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper68);
org.junit.Assert.assertTrue("'" + int72 + "' != '" + 0 + "'", int72 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper74);
org.junit.Assert.assertNotNull(unicodeEscaper78);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray79);
org.junit.Assert.assertNotNull(charSequenceTranslator80);
org.junit.Assert.assertNotNull(charSequenceTranslator81);
org.junit.Assert.assertNotNull(charSequenceTranslator82);
org.junit.Assert.assertNotNull(charSequenceTranslator83);
org.junit.Assert.assertNotNull(charSequenceTranslator84);
org.junit.Assert.assertNotNull(charSequenceTranslator85);
}
@Test
public void test2486() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2486");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 1, 1);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (short) 100, writer4);
java.io.Writer writer7 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u00750030", writer7);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
}
@Test
public void test2487() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2487");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) '#', 100);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray3 = null;
// The following exception was thrown during execution in test generation
try {
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator4 = unicodeEscaper2.with(charSequenceTranslatorArray3);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2488() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2488");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str9 = unicodeEscaper7.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer15 = null;
int int16 = unicodeEscaper12.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer15);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray23 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper12, unicodeEscaper18, unicodeEscaper19, unicodeEscaper22 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator24 = unicodeEscaper7.with(charSequenceTranslatorArray23);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator25 = unicodeEscaper2.with(charSequenceTranslatorArray23);
java.lang.String str27 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
java.io.Writer writer29 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean30 = unicodeEscaper2.translate((int) (byte) 100, writer29);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str4, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertEquals("'" + str9 + "' != '" + "hi!" + "'", str9, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertTrue("'" + int16 + "' != '" + 0 + "'", int16 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray23);
org.junit.Assert.assertNotNull(charSequenceTranslator24);
org.junit.Assert.assertNotNull(charSequenceTranslator25);
org.junit.Assert.assertEquals("'" + str27 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034" + "'", str27, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034");
}
@Test
public void test2489() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2489");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) -1, 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "1");
java.lang.CharSequence charSequence5 = null;
java.lang.String str6 = unicodeEscaper2.translate(charSequence5);
java.io.Writer writer8 = null;
boolean boolean9 = unicodeEscaper2.translate(0, writer8);
java.io.Writer writer11 = null;
// The following exception was thrown during execution in test generation
try {
unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u0075\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031", writer11);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u0031" + "'", str4, "\\u0031");
org.junit.Assert.assertNull(str6);
org.junit.Assert.assertTrue("'" + boolean9 + "' != '" + false + "'", boolean9 == false);
}
@Test
public void test2490() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2490");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(1, (-1));
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (short) 10, writer4);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) 'a', (int) 'a');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper11 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str13 = unicodeEscaper11.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper16 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str18 = unicodeEscaper16.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer24 = null;
int int25 = unicodeEscaper21.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer24);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray32 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper21, unicodeEscaper27, unicodeEscaper28, unicodeEscaper31 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator33 = unicodeEscaper16.with(charSequenceTranslatorArray32);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator34 = unicodeEscaper11.with(charSequenceTranslatorArray32);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper36 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (short) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper39 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer41 = null;
boolean boolean42 = unicodeEscaper39.translate((int) (short) 0, writer41);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper43 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper45 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) (byte) -1);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray46 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper39, unicodeEscaper43, unicodeEscaper45 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator47 = unicodeEscaper36.with(charSequenceTranslatorArray46);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator48 = charSequenceTranslator34.with(charSequenceTranslatorArray46);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator49 = unicodeEscaper8.with(charSequenceTranslatorArray46);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator50 = unicodeEscaper2.with(charSequenceTranslatorArray46);
java.io.Writer writer52 = null;
boolean boolean53 = unicodeEscaper2.translate((int) (byte) 10, writer52);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertNotNull(unicodeEscaper11);
org.junit.Assert.assertEquals("'" + str13 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str13, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper16);
org.junit.Assert.assertEquals("'" + str18 + "' != '" + "hi!" + "'", str18, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertTrue("'" + int25 + "' != '" + 0 + "'", int25 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray32);
org.junit.Assert.assertNotNull(charSequenceTranslator33);
org.junit.Assert.assertNotNull(charSequenceTranslator34);
org.junit.Assert.assertNotNull(unicodeEscaper36);
org.junit.Assert.assertNotNull(unicodeEscaper39);
org.junit.Assert.assertTrue("'" + boolean42 + "' != '" + false + "'", boolean42 == false);
org.junit.Assert.assertNotNull(unicodeEscaper45);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray46);
org.junit.Assert.assertNotNull(charSequenceTranslator47);
org.junit.Assert.assertNotNull(charSequenceTranslator48);
org.junit.Assert.assertNotNull(charSequenceTranslator49);
org.junit.Assert.assertNotNull(charSequenceTranslator50);
org.junit.Assert.assertTrue("'" + boolean53 + "' != '" + false + "'", boolean53 == false);
}
@Test
public void test2491() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2491");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, (-1));
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
@Test
public void test2492() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2492");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, 1);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "FFFFFFFF");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 0, (int) (short) 0);
java.lang.String str9 = unicodeEscaper7.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str14 = unicodeEscaper12.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer20 = null;
int int21 = unicodeEscaper17.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer20);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper23 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray28 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper17, unicodeEscaper23, unicodeEscaper24, unicodeEscaper27 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator29 = unicodeEscaper12.with(charSequenceTranslatorArray28);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator30 = unicodeEscaper7.with(charSequenceTranslatorArray28);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper2.with(charSequenceTranslatorArray28);
java.io.Writer writer33 = null;
boolean boolean34 = unicodeEscaper2.translate((int) '#', writer33);
java.lang.String str36 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0036\\u0034");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "FFFFFFFF" + "'", str4, "FFFFFFFF");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertEquals("'" + str9 + "' != '" + "\\u0068\\u0069\\u0021" + "'", str9, "\\u0068\\u0069\\u0021");
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertEquals("'" + str14 + "' != '" + "hi!" + "'", str14, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertTrue("'" + int21 + "' != '" + 0 + "'", int21 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper23);
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray28);
org.junit.Assert.assertNotNull(charSequenceTranslator29);
org.junit.Assert.assertNotNull(charSequenceTranslator30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
org.junit.Assert.assertTrue("'" + boolean34 + "' != '" + false + "'", boolean34 == false);
org.junit.Assert.assertEquals("'" + str36 + "' != '" + "\\u0036\\u0034" + "'", str36, "\\u0036\\u0034");
}
@Test
public void test2493() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2493");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper7 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str9 = unicodeEscaper7.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer15 = null;
int int16 = unicodeEscaper12.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer15);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper19 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray23 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper12, unicodeEscaper18, unicodeEscaper19, unicodeEscaper22 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator24 = unicodeEscaper7.with(charSequenceTranslatorArray23);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator25 = unicodeEscaper2.with(charSequenceTranslatorArray23);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) 10);
java.io.Writer writer29 = null;
boolean boolean30 = unicodeEscaper27.translate((int) (byte) 100, writer29);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper32 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper35 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) 1, (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper38 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer40 = null;
boolean boolean41 = unicodeEscaper38.translate((int) (short) 0, writer40);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper44 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str46 = unicodeEscaper44.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper49 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str51 = unicodeEscaper49.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper54 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer57 = null;
int int58 = unicodeEscaper54.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer57);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper60 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper61 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper64 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray65 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper54, unicodeEscaper60, unicodeEscaper61, unicodeEscaper64 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator66 = unicodeEscaper49.with(charSequenceTranslatorArray65);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator67 = unicodeEscaper44.with(charSequenceTranslatorArray65);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator68 = unicodeEscaper38.with(charSequenceTranslatorArray65);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper71 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) -1, (int) (byte) 1);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper74 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 100, (int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper76 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) ' ');
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray77 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper32, unicodeEscaper35, charSequenceTranslator68, unicodeEscaper71, unicodeEscaper74, unicodeEscaper76 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator78 = unicodeEscaper27.with(charSequenceTranslatorArray77);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator79 = charSequenceTranslator25.with(charSequenceTranslatorArray77);
java.lang.String str81 = charSequenceTranslator79.translate((java.lang.CharSequence) "\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0032\\u005C\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u0030\\u0030\\u0033\\u0033");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "hi!" + "'", str4, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper7);
org.junit.Assert.assertEquals("'" + str9 + "' != '" + "hi!" + "'", str9, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertTrue("'" + int16 + "' != '" + 0 + "'", int16 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray23);
org.junit.Assert.assertNotNull(charSequenceTranslator24);
org.junit.Assert.assertNotNull(charSequenceTranslator25);
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertTrue("'" + boolean30 + "' != '" + false + "'", boolean30 == false);
org.junit.Assert.assertNotNull(unicodeEscaper32);
org.junit.Assert.assertNotNull(unicodeEscaper35);
org.junit.Assert.assertNotNull(unicodeEscaper38);
org.junit.Assert.assertTrue("'" + boolean41 + "' != '" + false + "'", boolean41 == false);
org.junit.Assert.assertNotNull(unicodeEscaper44);
org.junit.Assert.assertEquals("'" + str46 + "' != '" + "hi!" + "'", str46, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper49);
org.junit.Assert.assertEquals("'" + str51 + "' != '" + "hi!" + "'", str51, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper54);
org.junit.Assert.assertTrue("'" + int58 + "' != '" + 0 + "'", int58 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper60);
org.junit.Assert.assertNotNull(unicodeEscaper64);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray65);
org.junit.Assert.assertNotNull(charSequenceTranslator66);
org.junit.Assert.assertNotNull(charSequenceTranslator67);
org.junit.Assert.assertNotNull(charSequenceTranslator68);
org.junit.Assert.assertNotNull(unicodeEscaper71);
org.junit.Assert.assertNotNull(unicodeEscaper74);
org.junit.Assert.assertNotNull(unicodeEscaper76);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray77);
org.junit.Assert.assertNotNull(charSequenceTranslator78);
org.junit.Assert.assertNotNull(charSequenceTranslator79);
org.junit.Assert.assertEquals("'" + str81 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033" + "'", str81, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0032\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033");
}
@Test
public void test2494() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2494");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 1, 1);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "64");
java.io.Writer writer7 = null;
int int8 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031", (int) ' ', writer7);
java.io.Writer writer10 = null;
boolean boolean11 = unicodeEscaper2.translate((int) (byte) 10, writer10);
java.lang.String str13 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u0041");
java.lang.Class<?> wildcardClass14 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "64" + "'", str4, "64");
org.junit.Assert.assertTrue("'" + int8 + "' != '" + 0 + "'", int8 == 0);
org.junit.Assert.assertTrue("'" + boolean11 + "' != '" + false + "'", boolean11 == false);
org.junit.Assert.assertEquals("'" + str13 + "' != '" + "\\u0041" + "'", str13, "\\u0041");
org.junit.Assert.assertNotNull(wildcardClass14);
}
@Test
public void test2495() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2495");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) -1, (int) (short) 10);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u00750032\\\\u00750033");
java.lang.CharSequence charSequence5 = null;
java.lang.String str6 = unicodeEscaper2.translate(charSequence5);
java.lang.Class<?> wildcardClass7 = unicodeEscaper2.getClass();
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\\\u00750032\\\\u00750033" + "'", str4, "\\\\u00750032\\\\u00750033");
org.junit.Assert.assertNull(str6);
org.junit.Assert.assertNotNull(wildcardClass7);
}
@Test
public void test2496() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2496");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (byte) -1, (int) (byte) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper4 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (byte) 0);
java.io.Writer writer6 = null;
boolean boolean7 = unicodeEscaper4.translate(1, writer6);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper9 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below((int) (short) 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 100, (int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper14 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper17 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str19 = unicodeEscaper17.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper22 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str24 = unicodeEscaper22.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper27 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer30 = null;
int int31 = unicodeEscaper27.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer30);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper33 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper34 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray38 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper27, unicodeEscaper33, unicodeEscaper34, unicodeEscaper37 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator39 = unicodeEscaper22.with(charSequenceTranslatorArray38);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator40 = unicodeEscaper17.with(charSequenceTranslatorArray38);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator41 = unicodeEscaper14.with(charSequenceTranslatorArray38);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper44 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf(10, 100);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper47 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) 100, 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper49 = org.apache.commons.lang3.text.translate.UnicodeEscaper.above((int) ' ');
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray50 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper14, unicodeEscaper44, unicodeEscaper47, unicodeEscaper49 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator51 = unicodeEscaper12.with(charSequenceTranslatorArray50);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator52 = unicodeEscaper9.with(charSequenceTranslatorArray50);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator53 = unicodeEscaper4.with(charSequenceTranslatorArray50);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator54 = unicodeEscaper2.with(charSequenceTranslatorArray50);
java.lang.String str56 = charSequenceTranslator54.translate((java.lang.CharSequence) "20");
java.io.Writer writer58 = null;
// The following exception was thrown during execution in test generation
try {
charSequenceTranslator54.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0036\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0037\\u005C\\u0075\\u0030\\u0030\\u0033\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0033\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031", writer58);
org.junit.Assert.fail("Expected exception of type java.lang.IllegalArgumentException; message: The Writer must not be null");
} catch (java.lang.IllegalArgumentException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertNotNull(unicodeEscaper4);
org.junit.Assert.assertTrue("'" + boolean7 + "' != '" + false + "'", boolean7 == false);
org.junit.Assert.assertNotNull(unicodeEscaper9);
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertNotNull(unicodeEscaper14);
org.junit.Assert.assertNotNull(unicodeEscaper17);
org.junit.Assert.assertEquals("'" + str19 + "' != '" + "hi!" + "'", str19, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper22);
org.junit.Assert.assertEquals("'" + str24 + "' != '" + "hi!" + "'", str24, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper27);
org.junit.Assert.assertTrue("'" + int31 + "' != '" + 0 + "'", int31 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper33);
org.junit.Assert.assertNotNull(unicodeEscaper37);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray38);
org.junit.Assert.assertNotNull(charSequenceTranslator39);
org.junit.Assert.assertNotNull(charSequenceTranslator40);
org.junit.Assert.assertNotNull(charSequenceTranslator41);
org.junit.Assert.assertNotNull(unicodeEscaper44);
org.junit.Assert.assertNotNull(unicodeEscaper47);
org.junit.Assert.assertNotNull(unicodeEscaper49);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray50);
org.junit.Assert.assertNotNull(charSequenceTranslator51);
org.junit.Assert.assertNotNull(charSequenceTranslator52);
org.junit.Assert.assertNotNull(charSequenceTranslator53);
org.junit.Assert.assertNotNull(charSequenceTranslator54);
org.junit.Assert.assertEquals("'" + str56 + "' != '" + "\\u0032\\u0030" + "'", str56, "\\u0032\\u0030");
}
@Test
public void test2497() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2497");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (short) -1, (int) (short) 1);
java.lang.String str4 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
java.io.Writer writer7 = null;
int int8 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u\\u0030\\u003075\\u0030\\u00305C\\\\u\\u0030\\u003075\\u0030\\u003075\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0030\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0030\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0033\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0032\\\\u\\u0030\\u003075\\u0030\\u00305C\\\\u\\u0030\\u003075\\u0030\\u003075\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0030\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0030\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0033\\\\u\\u0030\\u003075\\u0030\\u0030\\u0033\\u0033", 10, writer7);
java.lang.String str10 = unicodeEscaper2.translate((java.lang.CharSequence) "20");
java.lang.String str12 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
java.io.Writer writer14 = null;
// The following exception was thrown during execution in test generation
try {
boolean boolean15 = unicodeEscaper2.translate(0, writer14);
org.junit.Assert.fail("Expected exception of type java.lang.NullPointerException; message: null");
} catch (java.lang.NullPointerException e) {
// Expected exception.
}
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertEquals("'" + str4 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030" + "'", str4, "\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030");
org.junit.Assert.assertTrue("'" + int8 + "' != '" + 0 + "'", int8 == 0);
org.junit.Assert.assertEquals("'" + str10 + "' != '" + "20" + "'", str10, "20");
org.junit.Assert.assertEquals("'" + str12 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031" + "'", str12, "\\u005C\\u0075\\u0030\\u0030\\u0035\\u0043\\u005C\\u0075\\u0030\\u0030\\u0037\\u0035\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0030\\u005C\\u0075\\u0030\\u0030\\u0033\\u0034\\u005C\\u0075\\u0030\\u0030\\u0033\\u0031");
}
@Test
public void test2498() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2498");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) (byte) 1, (int) (byte) -1);
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (byte) 10, writer4);
java.io.Writer writer8 = null;
int int9 = unicodeEscaper2.translate((java.lang.CharSequence) "\\\\u00750068\\\\u00750069\\\\u00750021", (int) ' ', writer8);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper12 = org.apache.commons.lang3.text.translate.UnicodeEscaper.outsideOf((int) (short) 0, (int) (byte) 0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper15 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer17 = null;
boolean boolean18 = unicodeEscaper15.translate((int) (short) 0, writer17);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper21 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str23 = unicodeEscaper21.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper26 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str28 = unicodeEscaper26.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper31 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer34 = null;
int int35 = unicodeEscaper31.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer34);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper37 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper38 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper41 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray42 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper31, unicodeEscaper37, unicodeEscaper38, unicodeEscaper41 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator43 = unicodeEscaper26.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator44 = unicodeEscaper21.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator45 = unicodeEscaper15.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator46 = unicodeEscaper12.with(charSequenceTranslatorArray42);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator47 = unicodeEscaper2.with(charSequenceTranslatorArray42);
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertTrue("'" + int9 + "' != '" + 0 + "'", int9 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper12);
org.junit.Assert.assertNotNull(unicodeEscaper15);
org.junit.Assert.assertTrue("'" + boolean18 + "' != '" + false + "'", boolean18 == false);
org.junit.Assert.assertNotNull(unicodeEscaper21);
org.junit.Assert.assertEquals("'" + str23 + "' != '" + "hi!" + "'", str23, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper26);
org.junit.Assert.assertEquals("'" + str28 + "' != '" + "hi!" + "'", str28, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper31);
org.junit.Assert.assertTrue("'" + int35 + "' != '" + 0 + "'", int35 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper37);
org.junit.Assert.assertNotNull(unicodeEscaper41);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray42);
org.junit.Assert.assertNotNull(charSequenceTranslator43);
org.junit.Assert.assertNotNull(charSequenceTranslator44);
org.junit.Assert.assertNotNull(charSequenceTranslator45);
org.junit.Assert.assertNotNull(charSequenceTranslator46);
org.junit.Assert.assertNotNull(charSequenceTranslator47);
}
@Test
public void test2499() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2499");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) '4', (int) '#');
java.io.Writer writer4 = null;
boolean boolean5 = unicodeEscaper2.translate((int) (short) 0, writer4);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper8 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str10 = unicodeEscaper8.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper13 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.lang.String str15 = unicodeEscaper13.translate((java.lang.CharSequence) "hi!");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper18 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
java.io.Writer writer21 = null;
int int22 = unicodeEscaper18.translate((java.lang.CharSequence) "FFFFFFFF", 0, writer21);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper24 = org.apache.commons.lang3.text.translate.UnicodeEscaper.below(0);
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper25 = new org.apache.commons.lang3.text.translate.UnicodeEscaper();
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper28 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between(100, (int) (short) 0);
org.apache.commons.lang3.text.translate.CharSequenceTranslator[] charSequenceTranslatorArray29 = new org.apache.commons.lang3.text.translate.CharSequenceTranslator[] { unicodeEscaper18, unicodeEscaper24, unicodeEscaper25, unicodeEscaper28 };
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator30 = unicodeEscaper13.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator31 = unicodeEscaper8.with(charSequenceTranslatorArray29);
org.apache.commons.lang3.text.translate.CharSequenceTranslator charSequenceTranslator32 = unicodeEscaper2.with(charSequenceTranslatorArray29);
java.lang.String str34 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005C\\u0075\\u0030\\u0030\\u0034\\u0031");
java.lang.String str36 = unicodeEscaper2.translate((java.lang.CharSequence) "\\u005Cu\\u0030\\u0030\\u0034\\u0031");
org.junit.Assert.assertNotNull(unicodeEscaper2);
org.junit.Assert.assertTrue("'" + boolean5 + "' != '" + false + "'", boolean5 == false);
org.junit.Assert.assertNotNull(unicodeEscaper8);
org.junit.Assert.assertEquals("'" + str10 + "' != '" + "hi!" + "'", str10, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper13);
org.junit.Assert.assertEquals("'" + str15 + "' != '" + "hi!" + "'", str15, "hi!");
org.junit.Assert.assertNotNull(unicodeEscaper18);
org.junit.Assert.assertTrue("'" + int22 + "' != '" + 0 + "'", int22 == 0);
org.junit.Assert.assertNotNull(unicodeEscaper24);
org.junit.Assert.assertNotNull(unicodeEscaper28);
org.junit.Assert.assertNotNull(charSequenceTranslatorArray29);
org.junit.Assert.assertNotNull(charSequenceTranslator30);
org.junit.Assert.assertNotNull(charSequenceTranslator31);
org.junit.Assert.assertNotNull(charSequenceTranslator32);
org.junit.Assert.assertEquals("'" + str34 + "' != '" + "\\u005C\\u0075\\u0030\\u0030\\u0034\\u0031" + "'", str34, "\\u005C\\u0075\\u0030\\u0030\\u0034\\u0031");
org.junit.Assert.assertEquals("'" + str36 + "' != '" + "\\u005Cu\\u0030\\u0030\\u0034\\u0031" + "'", str36, "\\u005Cu\\u0030\\u0030\\u0034\\u0031");
}
@Test
public void test2500() throws Throwable {
if (debug)
System.out.format("%n%s%n", "RegressionTest4.test2500");
org.apache.commons.lang3.text.translate.UnicodeEscaper unicodeEscaper2 = org.apache.commons.lang3.text.translate.UnicodeEscaper.between((int) ' ', (int) (short) 1);
org.junit.Assert.assertNotNull(unicodeEscaper2);
}
}
| [
"P.Derakhshanfar@tudelft.nl"
] | P.Derakhshanfar@tudelft.nl |
1aa0ed7dd8ec2675d97f57538bc678e3c7f65a85 | 1380b2c86126c4854868dbddab13fbfc7ec29095 | /19-left-rotation/src/main/java/LeftRotation.java | 3789c7037da45fb5a0161470c11c8e8c25b1569a | [] | no_license | ZsoltFabok/hackerrank | 2b9ce9e0ed65fc551d14f5ecfdff23a72b483e26 | 845efd05d3f3e0bce543bccad060fbaa66285e7c | refs/heads/master | 2023-03-19T13:11:20.383239 | 2023-03-06T07:53:05 | 2023-03-06T07:53:05 | 108,004,247 | 3 | 0 | null | 2023-03-06T07:53:06 | 2017-10-23T15:52:13 | Java | UTF-8 | Java | false | false | 375 | java |
public class LeftRotation {
static String leftRotation(int[] array, int d) {
StringBuilder sb = new StringBuilder();
for (int i = d; i < array.length; i++) {
sb.append(array[i]).append(" ");
}
for (int i = 0; i < d; i++) {
sb.append(array[i]).append(" ");
}
return sb.toString().trim();
}
}
| [
"me@zsoltfabok.com"
] | me@zsoltfabok.com |
c3a835d6ab715f92cdc10ca2762d1840c1cf0cc9 | 2bc2eadc9b0f70d6d1286ef474902466988a880f | /tags/mule-1.4.0/transports/axis/src/test/java/org/mule/providers/soap/axis/AxisExternalServerTest.java | 23e9221613eea2c34ca3a1afb3a17c086c087856 | [] | no_license | OrgSmells/codehaus-mule-git | 085434a4b7781a5def2b9b4e37396081eaeba394 | f8584627c7acb13efdf3276396015439ea6a0721 | refs/heads/master | 2022-12-24T07:33:30.190368 | 2020-02-27T19:10:29 | 2020-02-27T19:10:29 | 243,593,543 | 0 | 0 | null | 2022-12-15T23:30:00 | 2020-02-27T18:56:48 | null | UTF-8 | Java | false | false | 4,770 | java | /*
* $Id$
* --------------------------------------------------------------------------------------
* Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com
*
* The software in this package is published under the terms of the MuleSource MPL
* license, a copy of which has been included with this distribution in the
* LICENSE.txt file.
*/
package org.mule.providers.soap.axis;
import org.mule.MuleManager;
import org.mule.config.MuleProperties;
import org.mule.extras.client.MuleClient;
import org.mule.providers.soap.NamedParameter;
import org.mule.providers.soap.SoapMethod;
import org.mule.tck.AbstractMuleTestCase;
import org.mule.umo.UMOMessage;
import java.util.HashMap;
import java.util.Map;
import javax.xml.namespace.QName;
/**
* Requires an external Axis server running in Tomcat with the Calculator.jws service
* deployed to it.
*/
public class AxisExternalServerTest extends AbstractMuleTestCase
{
public void testAxisServiceRPC() throws Exception
{
String URL = "axis:http://localhost:8080/axis/Calculator.jws?method=add";
MuleClient client = new MuleClient();
UMOMessage result = client.send(URL, new Object[]{new Integer(4), new Integer(3)}, null);
assertNotNull(result);
assertEquals(result.getPayload(), new Integer(7));
}
public void testAxisServiceDocLitWrapped() throws Exception
{
String URL = "axis:http://localhost:8080/axis/Calculator.jws?method=add";
MuleClient client = new MuleClient();
Map props = new HashMap();
props.put("style", "wrapped");
props.put("use", "literal");
UMOMessage result = client.send(URL, new Object[]{new Integer(3), new Integer(3)}, props);
assertNotNull(result);
assertEquals(result.getPayload(), new Integer(6));
}
public void testAxisServiceDocLitWrappedWithNamedParams() throws Exception
{
String URL = "axis:http://localhost:8080/axis/Calculator.jws";
MuleClient client = new MuleClient();
SoapMethod method = new SoapMethod(new QName("http://muleumo.org/Calc", "add"));
method.addNamedParameter(new QName("Number1"), NamedParameter.XSD_INT, "in");
method.addNamedParameter(new QName("Number2"), NamedParameter.XSD_INT, "in");
method.setReturnType(NamedParameter.XSD_INT);
Map props = new HashMap();
props.put("style", "wrapped");
props.put("use", "literal");
props.put(MuleProperties.MULE_METHOD_PROPERTY, method);
UMOMessage result = client.send(URL, new Object[]{new Integer(3), new Integer(3)}, props);
assertNotNull(result);
assertEquals(result.getPayload(), new Integer(6));
}
public void testAxisServiceDocLitWrappedWithNamedParamsinXml() throws Exception
{
MuleManager.getInstance().dispose();
MuleClient client = new MuleClient(
"axis-client-endpoint-config.xml");
UMOMessage result = client.send("calculatorAddEndpoint",
new Object[]{new Integer(3), new Integer(3)}, null);
assertNotNull(result);
assertEquals(result.getPayload(), new Integer(6));
}
// The service is not hosted as Doc/Lit, so Axis will not allow us
// to send a Doc/Lit request style soap message
// public void testAxisServiceDocLit() throws Exception
// {
// String URL = "axis:http://localhost:8080/axis/Calculator.jws";
// MuleClient client = new MuleClient();
// Map props = new HashMap();
// props.put("style", "document");
// props.put("use", "literal");
//
// SoapMethod method = new SoapMethod(new
// QName("http://localhost:8080/axis/Calculator.jws", "add"));
// method.addNamedParameter(new QName("i1"), NamedParameter.XSD_INT, "in");
// method.addNamedParameter(new QName("i2"), NamedParameter.XSD_INT, "in");
// method.setReturnType(NamedParameter.XSD_INT);
// props.put(MuleProperties.MULE_METHOD_PROPERTY, method);
//
// UMOMessage result = client.send(URL, new Object[]{new Integer(3), new
// Integer(3)}, props);
// assertNotNull(result);
//
// assertEquals(result.getPayload(), new Integer(6));
// }
// wsdl-axis is currently disabled due to the problems axis had with this
// feature
// public void testAxisServiceUsingWSDL() throws Exception
// {
// String URL =
// "wsdl-axis:http://localhost:8080/axis/Calculator.jws?wsdl&method=add";
// MuleClient client = new MuleClient();
//
// UMOMessage result = client.send(URL, new Object[]{new Integer(4), new
// Integer(4)}, null);
// assertNotNull(result);
//
// assertEquals(result.getPayload(), new Integer(8));
// }
}
| [
"dirk.olmes@bf997673-6b11-0410-b953-e057580c5b09"
] | dirk.olmes@bf997673-6b11-0410-b953-e057580c5b09 |
de82b8e9cb402e716cefd802e34ca4d98e5cdee7 | e469678e2ee4d3c31b1ca6e44f18790f60a05b58 | /src/main/java/com/kodilla/librarybackend/domain/ReservationCreationDto.java | 8cb47b685bf677fa6fb8de48a71eda95257aa94d | [] | no_license | aleksandra4991/librarybackend | a0960a64e8724173b48ba71e6372ef7cf361ce1f | 3db9adbbd7cbf9251b9f070ad64435e138b4b727 | refs/heads/master | 2021-06-25T01:26:36.430727 | 2021-02-07T17:17:22 | 2021-02-07T17:17:22 | 198,894,522 | 0 | 0 | null | 2021-02-07T14:32:40 | 2019-07-25T20:05:44 | Java | UTF-8 | Java | false | false | 441 | java | package com.kodilla.librarybackend.domain;
public class ReservationCreationDto {
private Long readerId;
private Long cartId;
public ReservationCreationDto(){
}
public ReservationCreationDto(Long readerId, Long cartId) {
this.readerId = readerId;
this.cartId = cartId;
}
public Long getReaderId() {
return readerId;
}
public Long getCartId() {
return cartId;
}
}
| [
"aradzikowska12@gmail.com"
] | aradzikowska12@gmail.com |
4a80738b31af462d64310ac4bbd04e150f51f484 | 940c83f519088a82938b4f1a7775e640642a6332 | /core/core-user/src/main/java/com/dreameddeath/core/user/IUser.java | dfaec5da8b25c8ac8f70cc51ccb7952554b00865 | [] | no_license | renovate-bot/couchbase-testing | 53fc2dc3c94f6fc51bc858171c75d98cc04589c9 | 4c8f260599944ca5315156c9ee764312c07020a8 | refs/heads/master | 2023-06-08T12:48:44.750880 | 2015-12-22T13:50:37 | 2015-12-22T13:50:37 | 479,451,774 | 0 | 0 | null | 2022-04-08T15:52:40 | 2022-04-08T15:52:39 | null | UTF-8 | Java | false | false | 812 | java | /*
* Copyright Christophe Jeunesse
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.dreameddeath.core.user;
/**
* Created by Christophe Jeunesse on 10/09/2014.
*/
public interface IUser {
String getUserId();
Boolean hasRight(String name);
String getProperty(String name);
}
| [
"christophejeunesse@hotmail.com"
] | christophejeunesse@hotmail.com |
bdd8782e4c5e208f2f5b1a45b9f5a292e0bdfa02 | 592f70161ab32801efbb7e96b10d631931abc7c4 | /src/dvitel/bea/TreeGenotype.java | 7b9878566ba060ee6e806745dcfab3c1ff098419 | [] | no_license | dvitel/BasicEvolutionaryAlgorithm | c28b4318632cc29a609b11ee3ff84fd7f00bcbcc | 1fc99b801e274118c90e23e3aedbb57d3c2468c4 | refs/heads/master | 2021-07-20T07:54:07.124687 | 2017-10-27T15:48:54 | 2017-10-27T15:48:54 | 108,563,827 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,388 | java | package dvitel.bea;
import java.util.ArrayList;
import java.util.Hashtable;
import java.util.List;
import java.util.TreeMap;
import java.util.function.Function;
import java.util.function.Supplier;
import java.util.stream.Collectors;
import java.util.stream.IntStream;
import java.util.stream.Stream;
/*
public class TreeGenotype extends Genotype {
public static class Operation {
private Function<List<Object>, Object> call;
private TreeMap<Integer, Object> bindings;
private int arity;
private String name;
private Operation(Function<List<Object>, Object> call, int arity, String name,
TreeMap<Integer, Object> bindings) {
this.call = call;
this.arity = arity;
this.bindings = bindings;
this.name = name;
}
public Operation(Function<List<Object>, Object> call, int arity, String name) {
this(call, arity, name, new TreeMap<>());
}
public Operation bind(Operation other, int position) {
if (position < 0 || position >= arity) return this;
bindings.put(position, other);
int newArity = arity - 1 + other.arity;
return new Operation(call, newArity, name);
}
public Operation bind(Object argument, int position) {
if (position < 0 || position >= arity) return this;
int newArity = arity - 1;
return new Operation(call, newArity, name);
}
public Object call(List<Object> freeArgs) {
List<Object> safeFreeArgs = freeArgs.subList(0, arity);
ArrayList<Supplier<Object>> allArgs = new ArrayList<Supplier<Object>>();
int currentIndex = 0;
int prevBindingIndex = 0;
for (Integer bindingIndex: bindings.keySet()) {
allArgs.addAll(safeFreeArgs.subList(prevBindingIndex, bindingIndex));
prevBindingIndex = bindingIndex;
if (bindings.get(bindingIndex) instanceof Operation) {
Operation op = (Operation)bindings.get(bindingIndex);
allArgs.add(op.call(safeFreeArgs.subList(currentIndex, currentIndex + op.arity)));
currentIndex = currentIndex + op.arity;
} else {
allArgs.add(bindings.get(bindingIndex));
}
}
return call.apply(allArgs);
}
@Override
public String toString() {
return "[" + name + ":\r\n" + IntStream.range(0, arity).mapToObj(p -> {
if (bindedOperations.containsKey(p)) {
return "\t" + p + ": " + bindedOperations.get(p).toString();
} else {
return "\t" + p + ": X";
}
}).collect(Collectors.joining("\r\n"));
}
}
private Operation tree;
private List<Function<List<Object>, Object>> domain;
public TreeGenotype(Operation tree, List<Function<List<Object>, Object>> domain) {
this.tree = tree;
this.domain = domain;
}
@Override
public Genotype clone() {
return new TreeGenotype(tree, domain);
}
@Override
public Genotype mutateGene(int index) {
return null;
}
@Override
public int length() {
// TODO Auto-generated method stub
return 0;
}
@Override
public Gene get(int index) {
// TODO Auto-generated method stub
return null;
}
@Override
public List<Gene> get(int from, int toExclusive) {
// TODO Auto-generated method stub
return null;
}
@Override
public Genotype construct(Stream<List<Gene>> segments) {
// TODO Auto-generated method stub
return null;
}
@Override
public Gene createRandomGene() {
// TODO Auto-generated method stub
return null;
}
}*/
| [
"viteldmitry@gmail.com"
] | viteldmitry@gmail.com |
53318a494a8cb6cb4297c22eb2a14e11ef63e623 | beafa5b08fc29ade8438bb6dac87e0d4c880351d | /src/main/java/com/github/espartin21/archon/model/groupme/attachments/GroupMeImage.java | e77ae2e795a1ca34b3e0b0285425affaf9c2b267 | [] | no_license | espartin21/archon | ab9c2d7c2b9dcd0d09838951738ea83b768a2136 | 2049118dab523c2699ad51d7af1901ae2643b8e7 | refs/heads/master | 2023-01-19T03:05:05.759648 | 2020-12-01T03:13:06 | 2020-12-01T03:13:06 | 316,312,367 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 228 | java | package com.github.espartin21.archon.model.groupme.attachments;
import lombok.*;
@Getter
@Setter
@ToString
@NoArgsConstructor
@AllArgsConstructor
public class GroupMeImage extends GroupMeAttachment {
private String url;
}
| [
"espartin98@gmail.com"
] | espartin98@gmail.com |
6cbdbaa8dac492c1ce8224fa7de0a619b20622c7 | 1480f517b764136cb79ae467feb62e0277f790c7 | /GuiaCasos1/src/com/senati/eti/Caso05.java | 27129688a417bc7bfc01465265967ae2ab6c5154 | [] | no_license | Anjo-03/Guia_Casos_01 | 253cbd6e9e29c99ff1329ce4dc495b408e4a980c | 7b0ed612d96c2f113590d3ea19ac286af107dac5 | refs/heads/main | 2023-08-07T17:45:25.227190 | 2021-09-17T13:12:46 | 2021-09-17T13:12:46 | null | 0 | 0 | null | null | null | null | ISO-8859-1 | Java | false | false | 1,018 | java | package com.senati.eti;
//Importamos las librerías correspondientes.
import java.util.Scanner;
public class Caso05 {
public static void main(String[] args) {
//Instancia a la clase Scanner.
Scanner sc = new Scanner(System.in);
//Enviamos un mensaje al usuario y declaramos nuestras variables.
System.out.print("Primer número: ");
float numero1 = sc.nextFloat();
System.out.print("Segundo número: ");
float numero2 = sc.nextFloat();
//Aplicamos un CAST: Convierte un tipo de dato a otro.
float resultado1 = (numero1 + numero2)/2;
float resultado2 = numero1 + numero1*0.2f;
float resultado3 = (float)(numero2-numero2*0.3);
//Mostramos nuestros resultados.
System.out.println("\n..............");
System.out.println("..RESULTADOS..");
System.out.println("..............");
System.out.println("Resultado 1.....:" + resultado1);
System.out.println("Resultado 2.....:" + resultado2);
System.out.println("Resultado 3.....:" + resultado3);
}
} | [
"noreply@github.com"
] | noreply@github.com |
1acf7439d17e0a07739b6b0c7e85805cff094a75 | ee958046f3637a5fc44082d6defc0c3a6018be19 | /app/src/main/java/com/playdate/app/model/Premium.java | 498d66360c44c30f5862ae64459ae200215d4537 | [] | no_license | Abhishek-cdac/android_PlayDate | 6ba1c33d7eadd8652112e1d28b0dad69b57ec9fe | fe72ac1e16cfe2c4548baacd57eafeefaa23918d | refs/heads/master | 2023-06-30T19:35:18.080825 | 2021-08-03T13:10:27 | 2021-08-03T13:10:27 | 364,789,825 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 781 | java | package com.playdate.app.model;
import com.google.gson.annotations.SerializedName;
import java.util.ArrayList;
public class Premium {
@SerializedName("data")
private ArrayList<PremiumPlans> lstPremiumPlan;
private String message;
private int status;
public ArrayList<PremiumPlans> getLstPremiumPlan() {
return lstPremiumPlan;
}
public void setLstPremiumPlan(ArrayList<PremiumPlans> lstPremiumPlan) {
this.lstPremiumPlan = lstPremiumPlan;
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public int getStatus() {
return status;
}
public void setStatus(int status) {
this.status = status;
}
}
| [
"ajit.jadhav@nectarinfotel.com"
] | ajit.jadhav@nectarinfotel.com |
8f4159a51eecf9ee233805451ed72d0626e4eb90 | d0ba0a64bfd44405d97570e6c6e1613920c98fc9 | /scoo/lib/src/main/java/com/example/lib/TestStreamThree.java | 2b3e70253dad9785614d0976d12952dd10f86a10 | [] | no_license | kaola/scoo | 6f73abbd1bcdf418589e4ad402423e5d281eb1f9 | 67cbd293b30fc017662a7b54d60d4b169f9a3261 | refs/heads/master | 2023-07-15T02:16:28.783176 | 2021-08-09T09:49:50 | 2021-08-09T09:49:50 | 392,157,114 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 636 | java | package com.example.lib;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.io.PrintWriter;
public class TestStreamThree {
public static void main(String[] args) {
File f = new File("e:/lol.txt");
try(
FileWriter fw = new FileWriter(f);
PrintWriter pw = new PrintWriter(fw);
) {
pw.println("garen kill teemo");
pw.println("teemo revive after 1 minutes");
pw.println("teemo try to garen, but killed again");
} catch (IOException e) {
e.printStackTrace();
}
}
}
| [
"ylyspengjun@163.com"
] | ylyspengjun@163.com |
c9cb4d9432f81eb8fb3ec0afeac10a592a398e59 | c785dd789c9e04443890e367d5a9409afd57326e | /BookManager/src/cn/maqiwei/controller/BookController.java | f76d6314f15caeeab2c34617b065d7c89f8653a1 | [] | no_license | Emamatcyber90/library | 9c7d89051dc4c8d3424463c130e62c9e31fda78c | abc06e0e3d3d7bd23d4ff243f563a75fc50271c2 | refs/heads/master | 2020-03-11T10:56:03.340892 | 2018-04-15T14:32:27 | 2018-04-15T14:32:27 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,508 | java | package cn.maqiwei.controller;
import cn.maqiwei.bean.*;
import cn.maqiwei.service.BookService;
import cn.maqiwei.utils.Page;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.servlet.ModelAndView;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.UnsupportedEncodingException;
import java.util.List;
import static java.awt.SystemColor.info;
@Controller
public class BookController {
@Autowired
private BookService bookService;
//入门程序 第一 包类 + 类包 + 方法名
/**
* 1.ModelAndView 无敌的 带着数据 返回视图路径 不建议使用
* 2.String 返回视图路径 model带数据 官方推荐此种方式 解耦 数据 视图 分离 MVC 建议使用
* 3.void ajax 请求 合适 json格式数据 (response 异步请求使用
*
* @return
*/
@RequestMapping(value = "/book/list.action")
public String list(QueryVo vo, Model model,HttpServletRequest request) {
Student student = (Student) request.getSession().getAttribute("stu");
// 查询分页对象
Page<Book> page = bookService.selectPageByQueryVo(vo);
// Student student = bookService.selectStudentById();
model.addAttribute("stu", student);
model.addAttribute("page", page);
model.addAttribute("bkName", vo.getBkName());
return "StudentBooks";
}
//查看借阅者信息
@RequestMapping(value = "/student/info.action")
public String selectStudentById(String id) throws Exception {
Student student = bookService.selectStudentById(id);
return "studentInfo";
}
//查看借阅信息
@RequestMapping(value = "/info/list.action")
public String selectInfotById(String id,Model model) throws Exception {
Student student = bookService.selectStudentById(id);
List<Info> infoList = bookService.selectInfotById(id);
model.addAttribute("infolist", infoList);
return "lendList";
}
//借阅
@RequestMapping(value = "/book/info.action")
public @ResponseBody
Book bookinfo(String name,HttpServletRequest request) throws Exception {
request.setCharacterEncoding("UTF-8");
Book book = bookService.selectBookInfoByName(name);
System.out.println(book);
return book;
}
//确认借阅
@RequestMapping(value = "/book/suerlend.action")
public void surelend(Book book, String id, HttpServletRequest request,HttpServletResponse response) throws Exception {
request.setCharacterEncoding("UTF-8");
InsertInfo insertInfo=new InsertInfo();
insertInfo.setId(id);
insertInfo.setBook(book);
Integer integer = bookService.selectLendInfoByBookName(insertInfo);
System.out.println(integer);
if(integer>0){
response.getWriter().write("{\"b\":"+integer+"}");
}else{
//借阅,余量减1
bookService.lendBook(book);
//添加借阅信息
bookService.insertInfo(insertInfo);
response.getWriter().write("{\"b\":"+integer+"}");
response.getWriter().write("借阅成功");
}
}
}
| [
"574041315@qq.com"
] | 574041315@qq.com |
ca691bfa57ced814b2aa54752f6552a1880e56d5 | d33e733486e4b9c202faacb19f0fa89e1b82f886 | /gamepub/db/src/main/java/gamepub/db/dao/GameStatusDao.java | d5acf97ee4d14d7e41e0aaeb6740518a334051f7 | [] | no_license | Chevron94/NetCrackerGames | fe163113f1db8141645ceff7c1f4a1e3f344e166 | bb9cd535d4397c8a6fc34439802d3bc31e98205f | refs/heads/master | 2021-01-10T18:17:11.148501 | 2016-03-16T18:24:56 | 2016-03-16T18:24:56 | 46,004,785 | 0 | 2 | null | 2016-02-29T18:39:42 | 2015-11-11T19:31:04 | HTML | UTF-8 | Java | false | false | 228 | java | package gamepub.db.dao;
import gamepub.db.entity.GameStatus;
/**
* Created by roman on 06.12.15.
*/
public interface GameStatusDao extends BaseDao<GameStatus,Integer> {
public GameStatus getGameStatusById(Integer id);
}
| [
"chevron19941@gmail.com"
] | chevron19941@gmail.com |
937ad9c720829c90aff3d8863ab5e2840593905e | 9f1c93ad617a0e748ec6488d446c9e47711763f3 | /src/main/java/co/paralleluniverse/examples/cascading/JettyServer.java | 228d7fcec9c8d67dcc21b1e4e6520717e8b0655a | [
"MIT"
] | permissive | puniverse/CascadingFailureExample | 280ef06d79a54b13d551ac4b23b97f49fa829065 | 911869660941c935c3f0c4c2134c8397afb33958 | refs/heads/master | 2021-06-03T11:34:32.462346 | 2015-01-26T20:55:07 | 2015-01-26T20:55:07 | 18,638,780 | 7 | 5 | null | 2019-03-23T18:02:30 | 2014-04-10T14:10:31 | Java | UTF-8 | Java | false | false | 1,844 | java | package co.paralleluniverse.examples.cascading;
import javax.servlet.Servlet;
import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.server.ServerConnector;
import org.eclipse.jetty.servlet.ServletContextHandler;
import org.eclipse.jetty.servlet.ServletHolder;
import org.eclipse.jetty.util.thread.QueuedThreadPool;
public class JettyServer extends AbstractEmbeddedServer {
private Server server;
private ServerConnector http;
private ServletContextHandler context;
private void build() {
if (server != null)
return;
this.server = new Server(new QueuedThreadPool(nThreads, nThreads));
this.http = new ServerConnector(server);
http.setPort(port);
http.setAcceptQueueSize(maxConn);
server.addConnector(http);
this.context = new ServletContextHandler(ServletContextHandler.SESSIONS);
}
@Override
public ServletDesc addServlet(String name, Class<? extends Servlet> servletClass, String mapping) {
build();
ServletHolder sh = new ServletHolder(servletClass);
context.addServlet(sh, mapping);
return new JettyServletDesc(sh);
}
@Override
public void run() throws Exception {
server.setHandler(context);
server.start();
server.join();
}
private static class JettyServletDesc implements ServletDesc {
private final ServletHolder impl;
public JettyServletDesc(ServletHolder sh) {
this.impl = sh;
}
@Override
public ServletDesc setInitParameter(String name, String value) {
impl.setInitParameter(name, value);
return this;
}
@Override
public ServletDesc setLoadOnStartup(int load) {
impl.setInitOrder(load);
return this;
}
}
}
| [
"ron.pressler@gmail.com"
] | ron.pressler@gmail.com |
1d57adbad0b2cd2c913148d62bd4df16a6c3d3a4 | 8f543d70830101d5997eeeec52bfd7b46f5f61ce | /app/src/main/java/com/zebra/android/devdemo/discovery/DiscoveryDemo.java | fae05aaa2ce0f6d9d7eaf8fed476de4d637933d0 | [] | no_license | qq742571766/ZSDK_Demo | e6c926eed749ff62b94c93624352b0772391a622 | ab21f1424208de88a92292df38827e0a942ca432 | refs/heads/master | 2020-04-06T17:01:41.856554 | 2018-11-15T06:27:59 | 2018-11-15T06:27:59 | 157,643,465 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,506 | java | /***********************************************
* CONFIDENTIAL AND PROPRIETARY
*
* The source code and other information contained herein is the confidential and the exclusive property of
* ZIH Corp. and is subject to the terms and conditions in your end user license agreement.
* This source code, and any other information contained herein, shall not be copied, reproduced, published,
* displayed or distributed, in whole or in part, in any medium, by any means, for any purpose except as
* expressly permitted under such license agreement.
*
* Copyright ZIH Corp. 2012
*
* ALL RIGHTS RESERVED
***********************************************/
package com.zebra.android.devdemo.discovery;
import android.app.ListActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.ListView;
import com.zebra.android.devdemo.R;
public class DiscoveryDemo extends ListActivity {
private static final int BLUETOOTH = 0;
private static final int LOCAL_BROADCAST = 1;
private static final int DIRECTED_BROADCAST = 2;
private static final int MULTICAST = 3;
private static final int SUBNET_SEARCH = 4;
private static final int FIND_PRINTERS = 5;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.discovery_methods);
}
@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
super.onListItemClick(l, v, position, id);
Intent intent;
switch (position) {
case BLUETOOTH:
intent = new Intent(this, BluetoothDiscovery.class);
break;
case LOCAL_BROADCAST:
intent = new Intent(this, LocalBroadcastDiscoveryResultList.class);
break;
case MULTICAST:
intent = new Intent(this, MulticastDiscoveryParameters.class);
break;
case DIRECTED_BROADCAST:
intent = new Intent(this, DirectedBroadcastParameters.class);
break;
case SUBNET_SEARCH:
intent = new Intent(this, SubnetSearchParameters.class);
break;
case FIND_PRINTERS:
intent = new Intent(this, FindPrintersDiscoveryResultList.class);
break;
default:
return;// not possible
}
startActivity(intent);
}
}
| [
"742571766@qq.com"
] | 742571766@qq.com |
30450d9f12c95e72f85da5e4d39bad2d5b8bbdfe | 1c59677b633d2b64f10f8ad6e46905f1c15745c1 | /profiles-app/src/main/java/com/cus/jastip/profile/config/oauth2/OAuth2JwtAccessTokenConverter.java | 5adb7e96a95454a5a60c6d0d394203e704f2c458 | [] | no_license | elvistj10/new-jastip | 3a430dce4578b40d5be8c345692e65e389f1e473 | 33477d059e1a15f060049d46a68919fedce6c31b | refs/heads/master | 2020-04-12T22:06:34.924049 | 2018-12-22T04:52:12 | 2018-12-22T04:52:12 | 162,781,767 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,217 | java | package com.cus.jastip.profile.config.oauth2;
import com.cus.jastip.profile.security.oauth2.OAuth2SignatureVerifierClient;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.security.jwt.crypto.sign.SignatureVerifier;
import org.springframework.security.oauth2.common.exceptions.InvalidTokenException;
import org.springframework.security.oauth2.provider.token.store.JwtAccessTokenConverter;
import java.util.Map;
/**
* Improved JwtAccessTokenConverter that can handle lazy fetching of public verifier keys.
*/
public class OAuth2JwtAccessTokenConverter extends JwtAccessTokenConverter {
private final Logger log = LoggerFactory.getLogger(OAuth2JwtAccessTokenConverter.class);
private final OAuth2Properties oAuth2Properties;
private final OAuth2SignatureVerifierClient signatureVerifierClient;
/**
* When did we last fetch the public key?
*/
private long lastKeyFetchTimestamp;
public OAuth2JwtAccessTokenConverter(OAuth2Properties oAuth2Properties, OAuth2SignatureVerifierClient signatureVerifierClient) {
this.oAuth2Properties = oAuth2Properties;
this.signatureVerifierClient = signatureVerifierClient;
tryCreateSignatureVerifier();
}
/**
* Try to decode the token with the current public key.
* If it fails, contact the OAuth2 server to get a new public key, then try again.
* We might not have fetched it in the first place or it might have changed.
*
* @param token the JWT token to decode.
* @return the resulting claims.
* @throws InvalidTokenException if we cannot decode the token.
*/
@Override
protected Map<String, Object> decode(String token) {
try {
//check if our public key and thus SignatureVerifier have expired
long ttl = oAuth2Properties.getSignatureVerification().getTtl();
if (ttl > 0 && System.currentTimeMillis() - lastKeyFetchTimestamp > ttl) {
throw new InvalidTokenException("public key expired");
}
return super.decode(token);
} catch (InvalidTokenException ex) {
if (tryCreateSignatureVerifier()) {
return super.decode(token);
}
throw ex;
}
}
/**
* Fetch a new public key from the AuthorizationServer.
*
* @return true, if we could fetch it; false, if we could not.
*/
private boolean tryCreateSignatureVerifier() {
long t = System.currentTimeMillis();
if (t - lastKeyFetchTimestamp < oAuth2Properties.getSignatureVerification().getPublicKeyRefreshRateLimit()) {
return false;
}
try {
SignatureVerifier verifier = signatureVerifierClient.getSignatureVerifier();
if(verifier!=null) {
setVerifier(verifier);
lastKeyFetchTimestamp = t;
log.debug("Public key retrieved from OAuth2 server to create SignatureVerifier");
return true;
}
} catch (Throwable ex) {
log.error("could not get public key from OAuth2 server to create SignatureVerifier", ex);
}
return false;
}
}
| [
"elvistenthjune@gmil.com"
] | elvistenthjune@gmil.com |
5ef1651ec2e69c685f703acc58c0e3ec5dfa6f3f | e9fd121e587442ce0ed87e24ea1c9aaec9e9ec22 | /src/main/java/me/github/lparo/geolocation/repository/impl/redis/RedisIpCityLocationRepository.java | 82e13cdb6a5e96ad6ca90028ab1a39358e56c816 | [] | no_license | LuizParo/ip-geolocation-reactive | 2216d3e9c374d03a336433daaa13e47cd8b76ea6 | 56cfe5ddf367ae94cafeaca27183775d78f2c716 | refs/heads/master | 2022-11-27T07:51:33.790105 | 2020-08-09T22:26:30 | 2020-08-09T22:26:30 | 286,326,723 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,647 | java | package me.github.lparo.geolocation.repository.impl.redis;
import me.github.lparo.geolocation.domain.IpCityLocation;
import me.github.lparo.geolocation.repository.IpCityLocationRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.ReactiveRedisTemplate;
import org.springframework.data.redis.core.ReactiveValueOperations;
import org.springframework.stereotype.Repository;
import reactor.core.publisher.Mono;
/**
* Implementing class of {@link IpCityLocationRepository} responsible for fetching the {@link IpCityLocation} information
* from the underlying Redis server, which is being used as a cache.
*/
@Repository("redisIpCityLocationRepository")
public class RedisIpCityLocationRepository implements IpCityLocationRepository {
private static final String REPOSITORY_TYPE = "CITY-";
private final ReactiveValueOperations<String, IpCityLocation> valueOperations;
@Autowired
public RedisIpCityLocationRepository(ReactiveRedisTemplate<String, ?> reactiveRedisTemplate) {
@SuppressWarnings("unchecked")
final ReactiveValueOperations<String, IpCityLocation> valueOperations =
(ReactiveValueOperations<String, IpCityLocation>) reactiveRedisTemplate.opsForValue();
this.valueOperations = valueOperations;
}
/**
* Tries to fetch the {@link IpCityLocation} from the Redis cache and returns it as an {@link Mono}. If the
* information is missing from Redis, then an {@link Mono#empty()} is returned instead. It uses the IP address
* as a locator key in the cache.
*
* @param ip the IP address to have the {@link IpCityLocation} information fetched.
*
* @return the {@link IpCityLocation} information of where the IP address is located wrapped in a {@link Mono}.
*/
@Override
public Mono<IpCityLocation> getCityLocationForIp(String ip) {
return valueOperations.get(REPOSITORY_TYPE + ip);
}
/**
* Adds a single {@link IpCityLocation} in the cache, associating it with its origin IP address (as the locator key).
*
* @param ip the IP address to be used as a locator key for the incoming {@link IpCityLocation}.
* @param ipCityLocation the {@link IpCityLocation} to be persisted in the Redis cache.
*
* @return the {@link IpCityLocation} that was just saved into the Redis cache wrapped in a {@link Mono}.
*/
public Mono<IpCityLocation> addToCache(String ip, IpCityLocation ipCityLocation) {
return valueOperations.set(REPOSITORY_TYPE + ip, ipCityLocation)
.thenReturn(ipCityLocation);
}
}
| [
"lg_paro@hotmail.com"
] | lg_paro@hotmail.com |
c44a2c725db8abeb0e1afc3b5a8d78f1c0403775 | 3f6f7bf65cac63b48170157679686e6a68db38a5 | /Q-municate_core/build/generated/source/r/debug/com/quickblox/q_municate_db/R.java | 3de693ec7bc6bbf1ff608151a1b2689bf8d94474 | [] | no_license | GoodyIT/Denning-Android | dd748f0e10eba5a6be0e529c59581ec0c74c4534 | 861abb7b40a7fb39a10b2c2fa84afc1055d5fc3b | refs/heads/master | 2020-03-25T04:24:33.710281 | 2018-11-17T12:52:58 | 2018-11-17T12:52:58 | 113,669,581 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 105,530 | java | /* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* gradle plugin from the resource data it found. It
* should not be modified by hand.
*/
package com.quickblox.q_municate_db;
public final class R {
public static final class anim {
public static int abc_fade_in = 0x7f010001;
public static int abc_fade_out = 0x7f010002;
public static int abc_grow_fade_in_from_bottom = 0x7f010003;
public static int abc_popup_enter = 0x7f010004;
public static int abc_popup_exit = 0x7f010005;
public static int abc_shrink_fade_out_from_bottom = 0x7f010006;
public static int abc_slide_in_bottom = 0x7f010007;
public static int abc_slide_in_top = 0x7f010008;
public static int abc_slide_out_bottom = 0x7f010009;
public static int abc_slide_out_top = 0x7f01000a;
public static int abc_tooltip_enter = 0x7f01000b;
public static int abc_tooltip_exit = 0x7f01000c;
}
public static final class attr {
public static int actionBarDivider = 0x7f040001;
public static int actionBarItemBackground = 0x7f040002;
public static int actionBarPopupTheme = 0x7f040003;
public static int actionBarSize = 0x7f040004;
public static int actionBarSplitStyle = 0x7f040005;
public static int actionBarStyle = 0x7f040006;
public static int actionBarTabBarStyle = 0x7f040007;
public static int actionBarTabStyle = 0x7f040008;
public static int actionBarTabTextStyle = 0x7f040009;
public static int actionBarTheme = 0x7f04000a;
public static int actionBarWidgetTheme = 0x7f04000b;
public static int actionButtonStyle = 0x7f04000c;
public static int actionDropDownStyle = 0x7f04000d;
public static int actionLayout = 0x7f04000e;
public static int actionMenuTextAppearance = 0x7f04000f;
public static int actionMenuTextColor = 0x7f040010;
public static int actionModeBackground = 0x7f040011;
public static int actionModeCloseButtonStyle = 0x7f040012;
public static int actionModeCloseDrawable = 0x7f040013;
public static int actionModeCopyDrawable = 0x7f040014;
public static int actionModeCutDrawable = 0x7f040015;
public static int actionModeFindDrawable = 0x7f040016;
public static int actionModePasteDrawable = 0x7f040017;
public static int actionModePopupWindowStyle = 0x7f040018;
public static int actionModeSelectAllDrawable = 0x7f040019;
public static int actionModeShareDrawable = 0x7f04001a;
public static int actionModeSplitBackground = 0x7f04001b;
public static int actionModeStyle = 0x7f04001c;
public static int actionModeWebSearchDrawable = 0x7f04001d;
public static int actionOverflowButtonStyle = 0x7f04001e;
public static int actionOverflowMenuStyle = 0x7f04001f;
public static int actionProviderClass = 0x7f040020;
public static int actionViewClass = 0x7f040021;
public static int activityChooserViewStyle = 0x7f040022;
public static int alertDialogButtonGroupStyle = 0x7f040028;
public static int alertDialogCenterButtons = 0x7f040029;
public static int alertDialogStyle = 0x7f04002a;
public static int alertDialogTheme = 0x7f04002b;
public static int allowStacking = 0x7f04002d;
public static int alpha = 0x7f04002e;
public static int alphabeticModifiers = 0x7f04002f;
public static int arrowHeadLength = 0x7f040032;
public static int arrowShaftLength = 0x7f040033;
public static int autoCompleteTextViewStyle = 0x7f040034;
public static int autoSizeMaxTextSize = 0x7f040035;
public static int autoSizeMinTextSize = 0x7f040036;
public static int autoSizePresetSizes = 0x7f040037;
public static int autoSizeStepGranularity = 0x7f040038;
public static int autoSizeTextType = 0x7f040039;
public static int background = 0x7f04003b;
public static int backgroundSplit = 0x7f04003c;
public static int backgroundStacked = 0x7f04003d;
public static int backgroundTint = 0x7f04003e;
public static int backgroundTintMode = 0x7f04003f;
public static int barLength = 0x7f040040;
public static int borderlessButtonStyle = 0x7f040042;
public static int buttonBarButtonStyle = 0x7f040044;
public static int buttonBarNegativeButtonStyle = 0x7f040045;
public static int buttonBarNeutralButtonStyle = 0x7f040046;
public static int buttonBarPositiveButtonStyle = 0x7f040047;
public static int buttonBarStyle = 0x7f040048;
public static int buttonGravity = 0x7f040049;
public static int buttonIconDimen = 0x7f04004a;
public static int buttonPanelSideLayout = 0x7f04004b;
public static int buttonStyle = 0x7f04004d;
public static int buttonStyleSmall = 0x7f04004e;
public static int buttonTint = 0x7f04004f;
public static int buttonTintMode = 0x7f040050;
public static int checkboxStyle = 0x7f040081;
public static int checkedTextViewStyle = 0x7f040082;
public static int closeIcon = 0x7f040088;
public static int closeItemLayout = 0x7f040089;
public static int collapseContentDescription = 0x7f04008a;
public static int collapseIcon = 0x7f04008b;
public static int color = 0x7f04008c;
public static int colorAccent = 0x7f04008d;
public static int colorBackgroundFloating = 0x7f04008e;
public static int colorButtonNormal = 0x7f04008f;
public static int colorControlActivated = 0x7f040090;
public static int colorControlHighlight = 0x7f040091;
public static int colorControlNormal = 0x7f040092;
public static int colorError = 0x7f040093;
public static int colorPrimary = 0x7f040094;
public static int colorPrimaryDark = 0x7f040095;
public static int colorSwitchThumbNormal = 0x7f040097;
public static int commitIcon = 0x7f0400a4;
public static int contentDescription = 0x7f0400a5;
public static int contentInsetEnd = 0x7f0400a6;
public static int contentInsetEndWithActions = 0x7f0400a7;
public static int contentInsetLeft = 0x7f0400a8;
public static int contentInsetRight = 0x7f0400a9;
public static int contentInsetStart = 0x7f0400aa;
public static int contentInsetStartWithNavigation = 0x7f0400ab;
public static int controlBackground = 0x7f0400b2;
public static int coordinatorLayoutStyle = 0x7f0400b4;
public static int customNavigationLayout = 0x7f0400b7;
public static int defaultQueryHint = 0x7f0400bb;
public static int dialogPreferredPadding = 0x7f0400bd;
public static int dialogTheme = 0x7f0400be;
public static int displayOptions = 0x7f0400bf;
public static int divider = 0x7f0400c0;
public static int dividerHorizontal = 0x7f0400c1;
public static int dividerPadding = 0x7f0400c2;
public static int dividerVertical = 0x7f0400c3;
public static int drawableSize = 0x7f0400c5;
public static int drawerArrowStyle = 0x7f0400c6;
public static int dropDownListViewStyle = 0x7f0400c7;
public static int dropdownListPreferredItemHeight = 0x7f0400c8;
public static int editTextBackground = 0x7f0400c9;
public static int editTextColor = 0x7f0400ca;
public static int editTextStyle = 0x7f0400cb;
public static int elevation = 0x7f0400cc;
public static int expandActivityOverflowButtonDrawable = 0x7f0400ce;
public static int font = 0x7f0400d1;
public static int fontFamily = 0x7f0400d2;
public static int fontProviderAuthority = 0x7f0400d3;
public static int fontProviderCerts = 0x7f0400d4;
public static int fontProviderFetchStrategy = 0x7f0400d5;
public static int fontProviderFetchTimeout = 0x7f0400d6;
public static int fontProviderPackage = 0x7f0400d7;
public static int fontProviderQuery = 0x7f0400d8;
public static int fontStyle = 0x7f0400d9;
public static int fontWeight = 0x7f0400da;
public static int gapBetweenBars = 0x7f0400dd;
public static int goIcon = 0x7f0400de;
public static int height = 0x7f0400df;
public static int hideOnContentScroll = 0x7f0400e0;
public static int homeAsUpIndicator = 0x7f0400e2;
public static int homeLayout = 0x7f0400e3;
public static int icon = 0x7f0400e4;
public static int iconTint = 0x7f0400e5;
public static int iconTintMode = 0x7f0400e6;
public static int iconifiedByDefault = 0x7f0400e7;
public static int imageButtonStyle = 0x7f0400ea;
public static int indeterminateProgressStyle = 0x7f0400eb;
public static int initialActivityCount = 0x7f0400ed;
public static int isLightTheme = 0x7f0400ef;
public static int itemPadding = 0x7f0400f0;
public static int keylines = 0x7f0400f1;
public static int layout = 0x7f0400f6;
public static int layout_anchor = 0x7f0400f8;
public static int layout_anchorGravity = 0x7f0400f9;
public static int layout_behavior = 0x7f0400fa;
public static int layout_dodgeInsetEdges = 0x7f0400fb;
public static int layout_insetEdge = 0x7f0400fc;
public static int layout_keyline = 0x7f0400fd;
public static int listChoiceBackgroundIndicator = 0x7f0400fe;
public static int listDividerAlertDialog = 0x7f0400ff;
public static int listItemLayout = 0x7f040100;
public static int listLayout = 0x7f040101;
public static int listMenuViewStyle = 0x7f040102;
public static int listPopupWindowStyle = 0x7f040103;
public static int listPreferredItemHeight = 0x7f040104;
public static int listPreferredItemHeightLarge = 0x7f040105;
public static int listPreferredItemHeightSmall = 0x7f040106;
public static int listPreferredItemPaddingLeft = 0x7f040107;
public static int listPreferredItemPaddingRight = 0x7f040108;
public static int logo = 0x7f04010a;
public static int logoDescription = 0x7f04010b;
public static int maxButtonHeight = 0x7f040116;
public static int measureWithLargestChild = 0x7f040117;
public static int multiChoiceItemLayout = 0x7f040118;
public static int navigationContentDescription = 0x7f040119;
public static int navigationIcon = 0x7f04011a;
public static int navigationMode = 0x7f04011b;
public static int numericModifiers = 0x7f04011d;
public static int overlapAnchor = 0x7f04011e;
public static int paddingBottomNoButtons = 0x7f04011f;
public static int paddingEnd = 0x7f040120;
public static int paddingStart = 0x7f040121;
public static int paddingTopNoTitle = 0x7f040122;
public static int panelBackground = 0x7f040123;
public static int panelMenuListTheme = 0x7f040124;
public static int panelMenuListWidth = 0x7f040125;
public static int popupMenuStyle = 0x7f04012c;
public static int popupTheme = 0x7f04012d;
public static int popupWindowStyle = 0x7f04012e;
public static int preserveIconSpacing = 0x7f04012f;
public static int progressBarPadding = 0x7f040130;
public static int progressBarStyle = 0x7f040131;
public static int queryBackground = 0x7f040132;
public static int queryHint = 0x7f040133;
public static int radioButtonStyle = 0x7f040134;
public static int ratingBarStyle = 0x7f040135;
public static int ratingBarStyleIndicator = 0x7f040136;
public static int ratingBarStyleSmall = 0x7f040137;
public static int searchHintIcon = 0x7f040144;
public static int searchIcon = 0x7f040145;
public static int searchViewStyle = 0x7f040147;
public static int seekBarStyle = 0x7f04014f;
public static int selectableItemBackground = 0x7f040150;
public static int selectableItemBackgroundBorderless = 0x7f040151;
public static int showAsAction = 0x7f040154;
public static int showDividers = 0x7f040155;
public static int showText = 0x7f040156;
public static int showTitle = 0x7f040157;
public static int singleChoiceItemLayout = 0x7f040159;
public static int spinBars = 0x7f04015c;
public static int spinnerDropDownItemStyle = 0x7f04015d;
public static int spinnerStyle = 0x7f04015e;
public static int splitTrack = 0x7f04015f;
public static int srcCompat = 0x7f040160;
public static int state_above_anchor = 0x7f040162;
public static int statusBarBackground = 0x7f040165;
public static int subMenuArrow = 0x7f040166;
public static int submitBackground = 0x7f040167;
public static int subtitle = 0x7f040169;
public static int subtitleTextAppearance = 0x7f04016a;
public static int subtitleTextColor = 0x7f04016b;
public static int subtitleTextStyle = 0x7f04016c;
public static int suggestionRowLayout = 0x7f04016d;
public static int switchMinWidth = 0x7f04016f;
public static int switchPadding = 0x7f040170;
public static int switchStyle = 0x7f040171;
public static int switchTextAppearance = 0x7f040172;
public static int textAllCaps = 0x7f040173;
public static int textAppearanceLargePopupMenu = 0x7f040174;
public static int textAppearanceListItem = 0x7f040175;
public static int textAppearanceListItemSecondary = 0x7f040176;
public static int textAppearanceListItemSmall = 0x7f040177;
public static int textAppearancePopupMenuHeader = 0x7f040178;
public static int textAppearanceSearchResultSubtitle = 0x7f040179;
public static int textAppearanceSearchResultTitle = 0x7f04017a;
public static int textAppearanceSmallPopupMenu = 0x7f04017b;
public static int textColorAlertDialogListItem = 0x7f04017c;
public static int textColorSearchUrl = 0x7f04017d;
public static int theme = 0x7f04017e;
public static int thickness = 0x7f04017f;
public static int thumbTextPadding = 0x7f040180;
public static int thumbTint = 0x7f040181;
public static int thumbTintMode = 0x7f040182;
public static int tickMark = 0x7f040183;
public static int tickMarkTint = 0x7f040184;
public static int tickMarkTintMode = 0x7f040185;
public static int tint = 0x7f040186;
public static int tintMode = 0x7f040187;
public static int title = 0x7f040188;
public static int titleMargin = 0x7f040189;
public static int titleMarginBottom = 0x7f04018a;
public static int titleMarginEnd = 0x7f04018b;
public static int titleMarginStart = 0x7f04018c;
public static int titleMarginTop = 0x7f04018d;
public static int titleMargins = 0x7f04018e;
public static int titleTextAppearance = 0x7f04018f;
public static int titleTextColor = 0x7f040190;
public static int titleTextStyle = 0x7f040191;
public static int toolbarNavigationButtonStyle = 0x7f040193;
public static int toolbarStyle = 0x7f040194;
public static int tooltipForegroundColor = 0x7f040196;
public static int tooltipFrameBackground = 0x7f040197;
public static int tooltipText = 0x7f040198;
public static int track = 0x7f04019a;
public static int trackTint = 0x7f04019b;
public static int trackTintMode = 0x7f04019c;
public static int viewInflaterClass = 0x7f0401ac;
public static int voiceIcon = 0x7f0401ad;
public static int windowActionBar = 0x7f0401b1;
public static int windowActionBarOverlay = 0x7f0401b2;
public static int windowActionModeOverlay = 0x7f0401b3;
public static int windowFixedHeightMajor = 0x7f0401b4;
public static int windowFixedHeightMinor = 0x7f0401b5;
public static int windowFixedWidthMajor = 0x7f0401b6;
public static int windowFixedWidthMinor = 0x7f0401b7;
public static int windowMinWidthMajor = 0x7f0401b8;
public static int windowMinWidthMinor = 0x7f0401b9;
public static int windowNoTitle = 0x7f0401ba;
}
public static final class bool {
public static int abc_action_bar_embed_tabs = 0x7f050001;
public static int abc_allow_stacked_button_bar = 0x7f050002;
public static int abc_config_actionMenuItemAllCaps = 0x7f050003;
public static int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f050004;
}
public static final class color {
public static int abc_background_cache_hint_selector_material_dark = 0x7f060001;
public static int abc_background_cache_hint_selector_material_light = 0x7f060002;
public static int abc_btn_colored_borderless_text_material = 0x7f060003;
public static int abc_btn_colored_text_material = 0x7f060004;
public static int abc_color_highlight_material = 0x7f060005;
public static int abc_hint_foreground_material_dark = 0x7f060006;
public static int abc_hint_foreground_material_light = 0x7f060007;
public static int abc_input_method_navigation_guard = 0x7f060008;
public static int abc_primary_text_disable_only_material_dark = 0x7f060009;
public static int abc_primary_text_disable_only_material_light = 0x7f06000a;
public static int abc_primary_text_material_dark = 0x7f06000b;
public static int abc_primary_text_material_light = 0x7f06000c;
public static int abc_search_url_text = 0x7f06000d;
public static int abc_search_url_text_normal = 0x7f06000e;
public static int abc_search_url_text_pressed = 0x7f06000f;
public static int abc_search_url_text_selected = 0x7f060010;
public static int abc_secondary_text_material_dark = 0x7f060011;
public static int abc_secondary_text_material_light = 0x7f060012;
public static int abc_tint_btn_checkable = 0x7f060013;
public static int abc_tint_default = 0x7f060014;
public static int abc_tint_edittext = 0x7f060015;
public static int abc_tint_seek_thumb = 0x7f060016;
public static int abc_tint_spinner = 0x7f060017;
public static int abc_tint_switch_track = 0x7f060018;
public static int accent_material_dark = 0x7f060019;
public static int accent_material_light = 0x7f06001a;
public static int background_floating_material_dark = 0x7f06001b;
public static int background_floating_material_light = 0x7f06001c;
public static int background_material_dark = 0x7f06001d;
public static int background_material_light = 0x7f06001e;
public static int bright_foreground_disabled_material_dark = 0x7f060021;
public static int bright_foreground_disabled_material_light = 0x7f060022;
public static int bright_foreground_inverse_material_dark = 0x7f060023;
public static int bright_foreground_inverse_material_light = 0x7f060024;
public static int bright_foreground_material_dark = 0x7f060025;
public static int bright_foreground_material_light = 0x7f060026;
public static int button_material_dark = 0x7f06002b;
public static int button_material_light = 0x7f06002c;
public static int dim_foreground_disabled_material_dark = 0x7f06005c;
public static int dim_foreground_disabled_material_light = 0x7f06005d;
public static int dim_foreground_material_dark = 0x7f06005e;
public static int dim_foreground_material_light = 0x7f06005f;
public static int error_color_material = 0x7f060060;
public static int foreground_material_dark = 0x7f060062;
public static int foreground_material_light = 0x7f060063;
public static int highlighted_text_material_dark = 0x7f060066;
public static int highlighted_text_material_light = 0x7f060067;
public static int material_blue_grey_800 = 0x7f06006a;
public static int material_blue_grey_900 = 0x7f06006b;
public static int material_blue_grey_950 = 0x7f06006c;
public static int material_deep_teal_200 = 0x7f06006d;
public static int material_deep_teal_500 = 0x7f06006e;
public static int material_grey_100 = 0x7f06006f;
public static int material_grey_300 = 0x7f060070;
public static int material_grey_50 = 0x7f060071;
public static int material_grey_600 = 0x7f060072;
public static int material_grey_800 = 0x7f060073;
public static int material_grey_850 = 0x7f060074;
public static int material_grey_900 = 0x7f060075;
public static int notification_action_color_filter = 0x7f060076;
public static int notification_icon_bg_color = 0x7f060077;
public static int primary_dark_material_dark = 0x7f06007f;
public static int primary_dark_material_light = 0x7f060080;
public static int primary_material_dark = 0x7f060081;
public static int primary_material_light = 0x7f060082;
public static int primary_text_default_material_dark = 0x7f060083;
public static int primary_text_default_material_light = 0x7f060084;
public static int primary_text_disabled_material_dark = 0x7f060085;
public static int primary_text_disabled_material_light = 0x7f060086;
public static int ripple_material_dark = 0x7f060087;
public static int ripple_material_light = 0x7f060088;
public static int secondary_text_default_material_dark = 0x7f060089;
public static int secondary_text_default_material_light = 0x7f06008a;
public static int secondary_text_disabled_material_dark = 0x7f06008b;
public static int secondary_text_disabled_material_light = 0x7f06008c;
public static int switch_thumb_disabled_material_dark = 0x7f06008d;
public static int switch_thumb_disabled_material_light = 0x7f06008e;
public static int switch_thumb_material_dark = 0x7f06008f;
public static int switch_thumb_material_light = 0x7f060090;
public static int switch_thumb_normal_material_dark = 0x7f060091;
public static int switch_thumb_normal_material_light = 0x7f060092;
public static int tooltip_background_dark = 0x7f06009e;
public static int tooltip_background_light = 0x7f06009f;
}
public static final class dimen {
public static int abc_action_bar_content_inset_material = 0x7f080001;
public static int abc_action_bar_content_inset_with_nav = 0x7f080002;
public static int abc_action_bar_default_height_material = 0x7f080003;
public static int abc_action_bar_default_padding_end_material = 0x7f080004;
public static int abc_action_bar_default_padding_start_material = 0x7f080005;
public static int abc_action_bar_elevation_material = 0x7f080006;
public static int abc_action_bar_icon_vertical_padding_material = 0x7f080007;
public static int abc_action_bar_overflow_padding_end_material = 0x7f080008;
public static int abc_action_bar_overflow_padding_start_material = 0x7f080009;
public static int abc_action_bar_progress_bar_size = 0x7f08000a;
public static int abc_action_bar_stacked_max_height = 0x7f08000b;
public static int abc_action_bar_stacked_tab_max_width = 0x7f08000c;
public static int abc_action_bar_subtitle_bottom_margin_material = 0x7f08000d;
public static int abc_action_bar_subtitle_top_margin_material = 0x7f08000e;
public static int abc_action_button_min_height_material = 0x7f08000f;
public static int abc_action_button_min_width_material = 0x7f080010;
public static int abc_action_button_min_width_overflow_material = 0x7f080011;
public static int abc_alert_dialog_button_bar_height = 0x7f080012;
public static int abc_alert_dialog_button_dimen = 0x7f080013;
public static int abc_button_inset_horizontal_material = 0x7f080014;
public static int abc_button_inset_vertical_material = 0x7f080015;
public static int abc_button_padding_horizontal_material = 0x7f080016;
public static int abc_button_padding_vertical_material = 0x7f080017;
public static int abc_cascading_menus_min_smallest_width = 0x7f080018;
public static int abc_config_prefDialogWidth = 0x7f080019;
public static int abc_control_corner_material = 0x7f08001a;
public static int abc_control_inset_material = 0x7f08001b;
public static int abc_control_padding_material = 0x7f08001c;
public static int abc_dialog_fixed_height_major = 0x7f08001d;
public static int abc_dialog_fixed_height_minor = 0x7f08001e;
public static int abc_dialog_fixed_width_major = 0x7f08001f;
public static int abc_dialog_fixed_width_minor = 0x7f080020;
public static int abc_dialog_list_padding_bottom_no_buttons = 0x7f080021;
public static int abc_dialog_list_padding_top_no_title = 0x7f080022;
public static int abc_dialog_min_width_major = 0x7f080023;
public static int abc_dialog_min_width_minor = 0x7f080024;
public static int abc_dialog_padding_material = 0x7f080025;
public static int abc_dialog_padding_top_material = 0x7f080026;
public static int abc_dialog_title_divider_material = 0x7f080027;
public static int abc_disabled_alpha_material_dark = 0x7f080028;
public static int abc_disabled_alpha_material_light = 0x7f080029;
public static int abc_dropdownitem_icon_width = 0x7f08002a;
public static int abc_dropdownitem_text_padding_left = 0x7f08002b;
public static int abc_dropdownitem_text_padding_right = 0x7f08002c;
public static int abc_edit_text_inset_bottom_material = 0x7f08002d;
public static int abc_edit_text_inset_horizontal_material = 0x7f08002e;
public static int abc_edit_text_inset_top_material = 0x7f08002f;
public static int abc_floating_window_z = 0x7f080030;
public static int abc_list_item_padding_horizontal_material = 0x7f080031;
public static int abc_panel_menu_list_width = 0x7f080032;
public static int abc_progress_bar_height_material = 0x7f080033;
public static int abc_search_view_preferred_height = 0x7f080034;
public static int abc_search_view_preferred_width = 0x7f080035;
public static int abc_seekbar_track_background_height_material = 0x7f080036;
public static int abc_seekbar_track_progress_height_material = 0x7f080037;
public static int abc_select_dialog_padding_start_material = 0x7f080038;
public static int abc_switch_padding = 0x7f080039;
public static int abc_text_size_body_1_material = 0x7f08003a;
public static int abc_text_size_body_2_material = 0x7f08003b;
public static int abc_text_size_button_material = 0x7f08003c;
public static int abc_text_size_caption_material = 0x7f08003d;
public static int abc_text_size_display_1_material = 0x7f08003e;
public static int abc_text_size_display_2_material = 0x7f08003f;
public static int abc_text_size_display_3_material = 0x7f080040;
public static int abc_text_size_display_4_material = 0x7f080041;
public static int abc_text_size_headline_material = 0x7f080042;
public static int abc_text_size_large_material = 0x7f080043;
public static int abc_text_size_medium_material = 0x7f080044;
public static int abc_text_size_menu_header_material = 0x7f080045;
public static int abc_text_size_menu_material = 0x7f080046;
public static int abc_text_size_small_material = 0x7f080047;
public static int abc_text_size_subhead_material = 0x7f080048;
public static int abc_text_size_subtitle_material_toolbar = 0x7f080049;
public static int abc_text_size_title_material = 0x7f08004a;
public static int abc_text_size_title_material_toolbar = 0x7f08004b;
public static int compat_button_inset_horizontal_material = 0x7f08008b;
public static int compat_button_inset_vertical_material = 0x7f08008c;
public static int compat_button_padding_horizontal_material = 0x7f08008d;
public static int compat_button_padding_vertical_material = 0x7f08008e;
public static int compat_control_corner_material = 0x7f08008f;
public static int disabled_alpha_material_dark = 0x7f080091;
public static int disabled_alpha_material_light = 0x7f080092;
public static int highlight_alpha_material_colored = 0x7f080095;
public static int highlight_alpha_material_dark = 0x7f080096;
public static int highlight_alpha_material_light = 0x7f080097;
public static int hint_alpha_material_dark = 0x7f080098;
public static int hint_alpha_material_light = 0x7f080099;
public static int hint_pressed_alpha_material_dark = 0x7f08009a;
public static int hint_pressed_alpha_material_light = 0x7f08009b;
public static int notification_action_icon_size = 0x7f0800a9;
public static int notification_action_text_size = 0x7f0800aa;
public static int notification_big_circle_margin = 0x7f0800ab;
public static int notification_content_margin_start = 0x7f0800ac;
public static int notification_large_icon_height = 0x7f0800ad;
public static int notification_large_icon_width = 0x7f0800ae;
public static int notification_main_column_padding_top = 0x7f0800af;
public static int notification_media_narrow_margin = 0x7f0800b0;
public static int notification_right_icon_size = 0x7f0800b1;
public static int notification_right_side_padding_top = 0x7f0800b2;
public static int notification_small_icon_background_padding = 0x7f0800b3;
public static int notification_small_icon_size_as_large = 0x7f0800b4;
public static int notification_subtext_size = 0x7f0800b5;
public static int notification_top_pad = 0x7f0800b6;
public static int notification_top_pad_large_text = 0x7f0800b7;
public static int tooltip_corner_radius = 0x7f0800cd;
public static int tooltip_horizontal_padding = 0x7f0800ce;
public static int tooltip_margin = 0x7f0800cf;
public static int tooltip_precise_anchor_extra_offset = 0x7f0800d0;
public static int tooltip_precise_anchor_threshold = 0x7f0800d1;
public static int tooltip_vertical_padding = 0x7f0800d2;
public static int tooltip_y_offset_non_touch = 0x7f0800d3;
public static int tooltip_y_offset_touch = 0x7f0800d4;
}
public static final class drawable {
public static int abc_ab_share_pack_mtrl_alpha = 0x7f090001;
public static int abc_action_bar_item_background_material = 0x7f090002;
public static int abc_btn_borderless_material = 0x7f090003;
public static int abc_btn_check_material = 0x7f090004;
public static int abc_btn_check_to_on_mtrl_000 = 0x7f090005;
public static int abc_btn_check_to_on_mtrl_015 = 0x7f090006;
public static int abc_btn_colored_material = 0x7f090007;
public static int abc_btn_default_mtrl_shape = 0x7f090008;
public static int abc_btn_radio_material = 0x7f090009;
public static int abc_btn_radio_to_on_mtrl_000 = 0x7f09000a;
public static int abc_btn_radio_to_on_mtrl_015 = 0x7f09000b;
public static int abc_btn_switch_to_on_mtrl_00001 = 0x7f09000c;
public static int abc_btn_switch_to_on_mtrl_00012 = 0x7f09000d;
public static int abc_cab_background_internal_bg = 0x7f09000e;
public static int abc_cab_background_top_material = 0x7f09000f;
public static int abc_cab_background_top_mtrl_alpha = 0x7f090010;
public static int abc_control_background_material = 0x7f090011;
public static int abc_dialog_material_background = 0x7f090012;
public static int abc_edit_text_material = 0x7f090013;
public static int abc_ic_ab_back_material = 0x7f090014;
public static int abc_ic_arrow_drop_right_black_24dp = 0x7f090015;
public static int abc_ic_clear_material = 0x7f090016;
public static int abc_ic_commit_search_api_mtrl_alpha = 0x7f090017;
public static int abc_ic_go_search_api_material = 0x7f090018;
public static int abc_ic_menu_copy_mtrl_am_alpha = 0x7f090019;
public static int abc_ic_menu_cut_mtrl_alpha = 0x7f09001a;
public static int abc_ic_menu_overflow_material = 0x7f09001b;
public static int abc_ic_menu_paste_mtrl_am_alpha = 0x7f09001c;
public static int abc_ic_menu_selectall_mtrl_alpha = 0x7f09001d;
public static int abc_ic_menu_share_mtrl_alpha = 0x7f09001e;
public static int abc_ic_search_api_material = 0x7f09001f;
public static int abc_ic_star_black_16dp = 0x7f090020;
public static int abc_ic_star_black_36dp = 0x7f090021;
public static int abc_ic_star_black_48dp = 0x7f090022;
public static int abc_ic_star_half_black_16dp = 0x7f090023;
public static int abc_ic_star_half_black_36dp = 0x7f090024;
public static int abc_ic_star_half_black_48dp = 0x7f090025;
public static int abc_ic_voice_search_api_material = 0x7f090026;
public static int abc_item_background_holo_dark = 0x7f090027;
public static int abc_item_background_holo_light = 0x7f090028;
public static int abc_list_divider_mtrl_alpha = 0x7f090029;
public static int abc_list_focused_holo = 0x7f09002a;
public static int abc_list_longpressed_holo = 0x7f09002b;
public static int abc_list_pressed_holo_dark = 0x7f09002c;
public static int abc_list_pressed_holo_light = 0x7f09002d;
public static int abc_list_selector_background_transition_holo_dark = 0x7f09002e;
public static int abc_list_selector_background_transition_holo_light = 0x7f09002f;
public static int abc_list_selector_disabled_holo_dark = 0x7f090030;
public static int abc_list_selector_disabled_holo_light = 0x7f090031;
public static int abc_list_selector_holo_dark = 0x7f090032;
public static int abc_list_selector_holo_light = 0x7f090033;
public static int abc_menu_hardkey_panel_mtrl_mult = 0x7f090034;
public static int abc_popup_background_mtrl_mult = 0x7f090035;
public static int abc_ratingbar_indicator_material = 0x7f090036;
public static int abc_ratingbar_material = 0x7f090037;
public static int abc_ratingbar_small_material = 0x7f090038;
public static int abc_scrubber_control_off_mtrl_alpha = 0x7f090039;
public static int abc_scrubber_control_to_pressed_mtrl_000 = 0x7f09003a;
public static int abc_scrubber_control_to_pressed_mtrl_005 = 0x7f09003b;
public static int abc_scrubber_primary_mtrl_alpha = 0x7f09003c;
public static int abc_scrubber_track_mtrl_alpha = 0x7f09003d;
public static int abc_seekbar_thumb_material = 0x7f09003e;
public static int abc_seekbar_tick_mark_material = 0x7f09003f;
public static int abc_seekbar_track_material = 0x7f090040;
public static int abc_spinner_mtrl_am_alpha = 0x7f090041;
public static int abc_spinner_textfield_background_material = 0x7f090042;
public static int abc_switch_thumb_material = 0x7f090043;
public static int abc_switch_track_mtrl_alpha = 0x7f090044;
public static int abc_tab_indicator_material = 0x7f090045;
public static int abc_tab_indicator_mtrl_alpha = 0x7f090046;
public static int abc_text_cursor_material = 0x7f090047;
public static int abc_text_select_handle_left_mtrl_dark = 0x7f090048;
public static int abc_text_select_handle_left_mtrl_light = 0x7f090049;
public static int abc_text_select_handle_middle_mtrl_dark = 0x7f09004a;
public static int abc_text_select_handle_middle_mtrl_light = 0x7f09004b;
public static int abc_text_select_handle_right_mtrl_dark = 0x7f09004c;
public static int abc_text_select_handle_right_mtrl_light = 0x7f09004d;
public static int abc_textfield_activated_mtrl_alpha = 0x7f09004e;
public static int abc_textfield_default_mtrl_alpha = 0x7f09004f;
public static int abc_textfield_search_activated_mtrl_alpha = 0x7f090050;
public static int abc_textfield_search_default_mtrl_alpha = 0x7f090051;
public static int abc_textfield_search_material = 0x7f090052;
public static int abc_vector_test = 0x7f090053;
public static int notification_action_background = 0x7f0900dc;
public static int notification_bg = 0x7f0900dd;
public static int notification_bg_low = 0x7f0900de;
public static int notification_bg_low_normal = 0x7f0900df;
public static int notification_bg_low_pressed = 0x7f0900e0;
public static int notification_bg_normal = 0x7f0900e1;
public static int notification_bg_normal_pressed = 0x7f0900e2;
public static int notification_icon_background = 0x7f0900e3;
public static int notification_template_icon_bg = 0x7f0900e4;
public static int notification_template_icon_low_bg = 0x7f0900e5;
public static int notification_tile_bg = 0x7f0900e6;
public static int notify_panel_notification_icon_bg = 0x7f0900e7;
public static int tooltip_frame_dark = 0x7f09011b;
public static int tooltip_frame_light = 0x7f09011c;
}
public static final class id {
public static int action_bar = 0x7f0c0002;
public static int action_bar_activity_content = 0x7f0c0003;
public static int action_bar_container = 0x7f0c0004;
public static int action_bar_root = 0x7f0c0005;
public static int action_bar_spinner = 0x7f0c0006;
public static int action_bar_subtitle = 0x7f0c0007;
public static int action_bar_title = 0x7f0c0008;
public static int action_container = 0x7f0c0009;
public static int action_context_bar = 0x7f0c000a;
public static int action_divider = 0x7f0c000b;
public static int action_image = 0x7f0c000c;
public static int action_menu_divider = 0x7f0c000d;
public static int action_menu_presenter = 0x7f0c000e;
public static int action_mode_bar = 0x7f0c000f;
public static int action_mode_bar_stub = 0x7f0c0010;
public static int action_mode_close_button = 0x7f0c0011;
public static int action_text = 0x7f0c0012;
public static int actions = 0x7f0c0013;
public static int activity_chooser_view_content = 0x7f0c0014;
public static int add = 0x7f0c0019;
public static int alertTitle = 0x7f0c001c;
public static int async = 0x7f0c0022;
public static int blocking = 0x7f0c0028;
public static int bottom = 0x7f0c002b;
public static int buttonPanel = 0x7f0c0033;
public static int checkbox = 0x7f0c004d;
public static int chronometer = 0x7f0c004e;
public static int contentPanel = 0x7f0c005d;
public static int custom = 0x7f0c0060;
public static int customPanel = 0x7f0c0061;
public static int decor_content_parent = 0x7f0c0064;
public static int default_activity_button = 0x7f0c0065;
public static int edit_query = 0x7f0c006b;
public static int end = 0x7f0c006d;
public static int expand_activities_button = 0x7f0c0082;
public static int expanded_menu = 0x7f0c0084;
public static int forever = 0x7f0c0089;
public static int home = 0x7f0c0090;
public static int icon = 0x7f0c0093;
public static int icon_group = 0x7f0c0094;
public static int image = 0x7f0c0099;
public static int info = 0x7f0c009b;
public static int italic = 0x7f0c00a3;
public static int left = 0x7f0c00a7;
public static int line1 = 0x7f0c00ad;
public static int line3 = 0x7f0c00ae;
public static int listMode = 0x7f0c00b4;
public static int list_item = 0x7f0c00b5;
public static int message = 0x7f0c00bd;
public static int multiply = 0x7f0c00dc;
public static int none = 0x7f0c00df;
public static int normal = 0x7f0c00e0;
public static int notification_background = 0x7f0c00e1;
public static int notification_main_column = 0x7f0c00e2;
public static int notification_main_column_container = 0x7f0c00e3;
public static int parentPanel = 0x7f0c00e9;
public static int progress_circular = 0x7f0c00f9;
public static int progress_horizontal = 0x7f0c00fa;
public static int radio = 0x7f0c00fc;
public static int right = 0x7f0c00fe;
public static int right_icon = 0x7f0c00ff;
public static int right_side = 0x7f0c0100;
public static int screen = 0x7f0c0104;
public static int scrollIndicatorDown = 0x7f0c0105;
public static int scrollIndicatorUp = 0x7f0c0106;
public static int scrollView = 0x7f0c0107;
public static int search_badge = 0x7f0c0108;
public static int search_bar = 0x7f0c0109;
public static int search_button = 0x7f0c010a;
public static int search_close_btn = 0x7f0c010b;
public static int search_edit_frame = 0x7f0c010c;
public static int search_go_btn = 0x7f0c010d;
public static int search_mag_icon = 0x7f0c010e;
public static int search_plate = 0x7f0c010f;
public static int search_src_text = 0x7f0c0110;
public static int search_voice_btn = 0x7f0c0111;
public static int select_dialog_listview = 0x7f0c0114;
public static int shortcut = 0x7f0c0116;
public static int spacer = 0x7f0c0119;
public static int split_action_bar = 0x7f0c011a;
public static int src_atop = 0x7f0c011b;
public static int src_in = 0x7f0c011c;
public static int src_over = 0x7f0c011d;
public static int start = 0x7f0c011f;
public static int submenuarrow = 0x7f0c0125;
public static int submit_area = 0x7f0c0126;
public static int tabMode = 0x7f0c0129;
public static int tag_transition_group = 0x7f0c012b;
public static int text = 0x7f0c012e;
public static int text2 = 0x7f0c0130;
public static int textSpacerNoButtons = 0x7f0c0131;
public static int textSpacerNoTitle = 0x7f0c0132;
public static int time = 0x7f0c0137;
public static int title = 0x7f0c0138;
public static int titleDividerNoCustom = 0x7f0c0139;
public static int title_template = 0x7f0c013a;
public static int top = 0x7f0c013d;
public static int topPanel = 0x7f0c013e;
public static int uniform = 0x7f0c013f;
public static int up = 0x7f0c0141;
public static int wrap_content = 0x7f0c0144;
}
public static final class integer {
public static int abc_config_activityDefaultDur = 0x7f0d0001;
public static int abc_config_activityShortDur = 0x7f0d0002;
public static int cancel_button_image_alpha = 0x7f0d0006;
public static int config_tooltipAnimTime = 0x7f0d0008;
public static int db_version = 0x7f0d0009;
public static int status_bar_notification_info_maxnum = 0x7f0d000b;
}
public static final class layout {
public static int abc_action_bar_title_item = 0x7f0f0001;
public static int abc_action_bar_up_container = 0x7f0f0002;
public static int abc_action_menu_item_layout = 0x7f0f0003;
public static int abc_action_menu_layout = 0x7f0f0004;
public static int abc_action_mode_bar = 0x7f0f0005;
public static int abc_action_mode_close_item_material = 0x7f0f0006;
public static int abc_activity_chooser_view = 0x7f0f0007;
public static int abc_activity_chooser_view_list_item = 0x7f0f0008;
public static int abc_alert_dialog_button_bar_material = 0x7f0f0009;
public static int abc_alert_dialog_material = 0x7f0f000a;
public static int abc_alert_dialog_title_material = 0x7f0f000b;
public static int abc_dialog_title_material = 0x7f0f000c;
public static int abc_expanded_menu_layout = 0x7f0f000d;
public static int abc_list_menu_item_checkbox = 0x7f0f000e;
public static int abc_list_menu_item_icon = 0x7f0f000f;
public static int abc_list_menu_item_layout = 0x7f0f0010;
public static int abc_list_menu_item_radio = 0x7f0f0011;
public static int abc_popup_menu_header_item_layout = 0x7f0f0012;
public static int abc_popup_menu_item_layout = 0x7f0f0013;
public static int abc_screen_content_include = 0x7f0f0014;
public static int abc_screen_simple = 0x7f0f0015;
public static int abc_screen_simple_overlay_action_mode = 0x7f0f0016;
public static int abc_screen_toolbar = 0x7f0f0017;
public static int abc_search_dropdown_item_icons_2line = 0x7f0f0018;
public static int abc_search_view = 0x7f0f0019;
public static int abc_select_dialog_material = 0x7f0f001a;
public static int abc_tooltip = 0x7f0f001b;
public static int notification_action = 0x7f0f003c;
public static int notification_action_tombstone = 0x7f0f003d;
public static int notification_template_custom_big = 0x7f0f0044;
public static int notification_template_icon_group = 0x7f0f0045;
public static int notification_template_part_chronometer = 0x7f0f0049;
public static int notification_template_part_time = 0x7f0f004a;
public static int select_dialog_item_material = 0x7f0f004f;
public static int select_dialog_multichoice_material = 0x7f0f0050;
public static int select_dialog_singlechoice_material = 0x7f0f0051;
public static int support_simple_spinner_dropdown_item = 0x7f0f0052;
}
public static final class raw {
public static int orm = 0x7f140003;
}
public static final class string {
public static int abc_action_bar_home_description = 0x7f150001;
public static int abc_action_bar_up_description = 0x7f150002;
public static int abc_action_menu_overflow_description = 0x7f150003;
public static int abc_action_mode_done = 0x7f150004;
public static int abc_activity_chooser_view_see_all = 0x7f150005;
public static int abc_activitychooserview_choose_application = 0x7f150006;
public static int abc_capital_off = 0x7f150007;
public static int abc_capital_on = 0x7f150008;
public static int abc_font_family_body_1_material = 0x7f150009;
public static int abc_font_family_body_2_material = 0x7f15000a;
public static int abc_font_family_button_material = 0x7f15000b;
public static int abc_font_family_caption_material = 0x7f15000c;
public static int abc_font_family_display_1_material = 0x7f15000d;
public static int abc_font_family_display_2_material = 0x7f15000e;
public static int abc_font_family_display_3_material = 0x7f15000f;
public static int abc_font_family_display_4_material = 0x7f150010;
public static int abc_font_family_headline_material = 0x7f150011;
public static int abc_font_family_menu_material = 0x7f150012;
public static int abc_font_family_subhead_material = 0x7f150013;
public static int abc_font_family_title_material = 0x7f150014;
public static int abc_search_hint = 0x7f150015;
public static int abc_searchview_description_clear = 0x7f150016;
public static int abc_searchview_description_query = 0x7f150017;
public static int abc_searchview_description_search = 0x7f150018;
public static int abc_searchview_description_submit = 0x7f150019;
public static int abc_searchview_description_voice = 0x7f15001a;
public static int abc_shareactionprovider_share_with = 0x7f15001b;
public static int abc_shareactionprovider_share_with_application = 0x7f15001c;
public static int abc_toolbar_collapse_description = 0x7f15001d;
public static int app_name = 0x7f15001e;
public static int db_name = 0x7f150073;
public static int search_menu_title = 0x7f1500ad;
public static int status_bar_notification_info_overflow = 0x7f1500ae;
}
public static final class style {
public static int AlertDialog_AppCompat = 0x7f160001;
public static int AlertDialog_AppCompat_Light = 0x7f160002;
public static int Animation_AppCompat_Dialog = 0x7f160003;
public static int Animation_AppCompat_DropDownUp = 0x7f160004;
public static int Animation_AppCompat_Tooltip = 0x7f160005;
public static int Base_AlertDialog_AppCompat = 0x7f16000e;
public static int Base_AlertDialog_AppCompat_Light = 0x7f16000f;
public static int Base_Animation_AppCompat_Dialog = 0x7f160010;
public static int Base_Animation_AppCompat_DropDownUp = 0x7f160011;
public static int Base_Animation_AppCompat_Tooltip = 0x7f160012;
public static int Base_DialogWindowTitleBackground_AppCompat = 0x7f160014;
public static int Base_DialogWindowTitle_AppCompat = 0x7f160015;
public static int Base_TextAppearance_AppCompat = 0x7f160016;
public static int Base_TextAppearance_AppCompat_Body1 = 0x7f160017;
public static int Base_TextAppearance_AppCompat_Body2 = 0x7f160018;
public static int Base_TextAppearance_AppCompat_Button = 0x7f160019;
public static int Base_TextAppearance_AppCompat_Caption = 0x7f16001a;
public static int Base_TextAppearance_AppCompat_Display1 = 0x7f16001b;
public static int Base_TextAppearance_AppCompat_Display2 = 0x7f16001c;
public static int Base_TextAppearance_AppCompat_Display3 = 0x7f16001d;
public static int Base_TextAppearance_AppCompat_Display4 = 0x7f16001e;
public static int Base_TextAppearance_AppCompat_Headline = 0x7f16001f;
public static int Base_TextAppearance_AppCompat_Inverse = 0x7f160020;
public static int Base_TextAppearance_AppCompat_Large = 0x7f160021;
public static int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f160022;
public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f160023;
public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f160024;
public static int Base_TextAppearance_AppCompat_Medium = 0x7f160025;
public static int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f160026;
public static int Base_TextAppearance_AppCompat_Menu = 0x7f160027;
public static int Base_TextAppearance_AppCompat_SearchResult = 0x7f160028;
public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f160029;
public static int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f16002a;
public static int Base_TextAppearance_AppCompat_Small = 0x7f16002b;
public static int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f16002c;
public static int Base_TextAppearance_AppCompat_Subhead = 0x7f16002d;
public static int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f16002e;
public static int Base_TextAppearance_AppCompat_Title = 0x7f16002f;
public static int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f160030;
public static int Base_TextAppearance_AppCompat_Tooltip = 0x7f160031;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f160032;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f160033;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f160034;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f160035;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f160036;
public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f160037;
public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f160038;
public static int Base_TextAppearance_AppCompat_Widget_Button = 0x7f160039;
public static int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f16003a;
public static int Base_TextAppearance_AppCompat_Widget_Button_Colored = 0x7f16003b;
public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f16003c;
public static int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f16003d;
public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f16003e;
public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f16003f;
public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f160040;
public static int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f160041;
public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f160042;
public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f160043;
public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f160044;
public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f160045;
public static int Base_ThemeOverlay_AppCompat = 0x7f160046;
public static int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f160047;
public static int Base_ThemeOverlay_AppCompat_Dark = 0x7f160048;
public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f160049;
public static int Base_ThemeOverlay_AppCompat_Dialog = 0x7f16004a;
public static int Base_ThemeOverlay_AppCompat_Dialog_Alert = 0x7f16004b;
public static int Base_ThemeOverlay_AppCompat_Light = 0x7f16004c;
public static int Base_Theme_AppCompat = 0x7f16004d;
public static int Base_Theme_AppCompat_CompactMenu = 0x7f16004e;
public static int Base_Theme_AppCompat_Dialog = 0x7f16004f;
public static int Base_Theme_AppCompat_DialogWhenLarge = 0x7f160050;
public static int Base_Theme_AppCompat_Dialog_Alert = 0x7f160051;
public static int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f160052;
public static int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f160053;
public static int Base_Theme_AppCompat_Light = 0x7f160054;
public static int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f160055;
public static int Base_Theme_AppCompat_Light_Dialog = 0x7f160056;
public static int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f160057;
public static int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f160058;
public static int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f160059;
public static int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f16005a;
public static int Base_V21_ThemeOverlay_AppCompat_Dialog = 0x7f16005b;
public static int Base_V21_Theme_AppCompat = 0x7f16005c;
public static int Base_V21_Theme_AppCompat_Dialog = 0x7f16005d;
public static int Base_V21_Theme_AppCompat_Light = 0x7f16005e;
public static int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f16005f;
public static int Base_V22_Theme_AppCompat = 0x7f160060;
public static int Base_V22_Theme_AppCompat_Light = 0x7f160061;
public static int Base_V23_Theme_AppCompat = 0x7f160062;
public static int Base_V23_Theme_AppCompat_Light = 0x7f160063;
public static int Base_V26_Theme_AppCompat = 0x7f160064;
public static int Base_V26_Theme_AppCompat_Light = 0x7f160065;
public static int Base_V26_Widget_AppCompat_Toolbar = 0x7f160066;
public static int Base_V7_ThemeOverlay_AppCompat_Dialog = 0x7f160067;
public static int Base_V7_Theme_AppCompat = 0x7f160068;
public static int Base_V7_Theme_AppCompat_Dialog = 0x7f160069;
public static int Base_V7_Theme_AppCompat_Light = 0x7f16006a;
public static int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f16006b;
public static int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f16006c;
public static int Base_V7_Widget_AppCompat_EditText = 0x7f16006d;
public static int Base_V7_Widget_AppCompat_Toolbar = 0x7f16006e;
public static int Base_Widget_AppCompat_ActionBar = 0x7f16006f;
public static int Base_Widget_AppCompat_ActionBar_Solid = 0x7f160070;
public static int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f160071;
public static int Base_Widget_AppCompat_ActionBar_TabText = 0x7f160072;
public static int Base_Widget_AppCompat_ActionBar_TabView = 0x7f160073;
public static int Base_Widget_AppCompat_ActionButton = 0x7f160074;
public static int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f160075;
public static int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f160076;
public static int Base_Widget_AppCompat_ActionMode = 0x7f160077;
public static int Base_Widget_AppCompat_ActivityChooserView = 0x7f160078;
public static int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f160079;
public static int Base_Widget_AppCompat_Button = 0x7f16007a;
public static int Base_Widget_AppCompat_ButtonBar = 0x7f16007b;
public static int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f16007c;
public static int Base_Widget_AppCompat_Button_Borderless = 0x7f16007d;
public static int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f16007e;
public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f16007f;
public static int Base_Widget_AppCompat_Button_Colored = 0x7f160080;
public static int Base_Widget_AppCompat_Button_Small = 0x7f160081;
public static int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f160082;
public static int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f160083;
public static int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f160084;
public static int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f160085;
public static int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f160086;
public static int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f160087;
public static int Base_Widget_AppCompat_EditText = 0x7f160088;
public static int Base_Widget_AppCompat_ImageButton = 0x7f160089;
public static int Base_Widget_AppCompat_Light_ActionBar = 0x7f16008a;
public static int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f16008b;
public static int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f16008c;
public static int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f16008d;
public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f16008e;
public static int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f16008f;
public static int Base_Widget_AppCompat_Light_PopupMenu = 0x7f160090;
public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f160091;
public static int Base_Widget_AppCompat_ListMenuView = 0x7f160092;
public static int Base_Widget_AppCompat_ListPopupWindow = 0x7f160093;
public static int Base_Widget_AppCompat_ListView = 0x7f160094;
public static int Base_Widget_AppCompat_ListView_DropDown = 0x7f160095;
public static int Base_Widget_AppCompat_ListView_Menu = 0x7f160096;
public static int Base_Widget_AppCompat_PopupMenu = 0x7f160097;
public static int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f160098;
public static int Base_Widget_AppCompat_PopupWindow = 0x7f160099;
public static int Base_Widget_AppCompat_ProgressBar = 0x7f16009a;
public static int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f16009b;
public static int Base_Widget_AppCompat_RatingBar = 0x7f16009c;
public static int Base_Widget_AppCompat_RatingBar_Indicator = 0x7f16009d;
public static int Base_Widget_AppCompat_RatingBar_Small = 0x7f16009e;
public static int Base_Widget_AppCompat_SearchView = 0x7f16009f;
public static int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f1600a0;
public static int Base_Widget_AppCompat_SeekBar = 0x7f1600a1;
public static int Base_Widget_AppCompat_SeekBar_Discrete = 0x7f1600a2;
public static int Base_Widget_AppCompat_Spinner = 0x7f1600a3;
public static int Base_Widget_AppCompat_Spinner_Underlined = 0x7f1600a4;
public static int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f1600a5;
public static int Base_Widget_AppCompat_Toolbar = 0x7f1600a6;
public static int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f1600a7;
public static int Platform_AppCompat = 0x7f1600f8;
public static int Platform_AppCompat_Light = 0x7f1600f9;
public static int Platform_ThemeOverlay_AppCompat = 0x7f1600fa;
public static int Platform_ThemeOverlay_AppCompat_Dark = 0x7f1600fb;
public static int Platform_ThemeOverlay_AppCompat_Light = 0x7f1600fc;
public static int Platform_V21_AppCompat = 0x7f1600fd;
public static int Platform_V21_AppCompat_Light = 0x7f1600fe;
public static int Platform_V25_AppCompat = 0x7f1600ff;
public static int Platform_V25_AppCompat_Light = 0x7f160100;
public static int Platform_Widget_AppCompat_Spinner = 0x7f160101;
public static int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f160105;
public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f160106;
public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f160107;
public static int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f160108;
public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f160109;
public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f16010a;
public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f16010b;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f16010c;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f16010d;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f16010e;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f16010f;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f160110;
public static int RtlUnderlay_Widget_AppCompat_ActionButton = 0x7f160111;
public static int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 0x7f160112;
public static int TextAppearance_AppCompat = 0x7f160113;
public static int TextAppearance_AppCompat_Body1 = 0x7f160114;
public static int TextAppearance_AppCompat_Body2 = 0x7f160115;
public static int TextAppearance_AppCompat_Button = 0x7f160116;
public static int TextAppearance_AppCompat_Caption = 0x7f160117;
public static int TextAppearance_AppCompat_Display1 = 0x7f160118;
public static int TextAppearance_AppCompat_Display2 = 0x7f160119;
public static int TextAppearance_AppCompat_Display3 = 0x7f16011a;
public static int TextAppearance_AppCompat_Display4 = 0x7f16011b;
public static int TextAppearance_AppCompat_Headline = 0x7f16011c;
public static int TextAppearance_AppCompat_Inverse = 0x7f16011d;
public static int TextAppearance_AppCompat_Large = 0x7f16011e;
public static int TextAppearance_AppCompat_Large_Inverse = 0x7f16011f;
public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f160120;
public static int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f160121;
public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f160122;
public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f160123;
public static int TextAppearance_AppCompat_Medium = 0x7f160124;
public static int TextAppearance_AppCompat_Medium_Inverse = 0x7f160125;
public static int TextAppearance_AppCompat_Menu = 0x7f160126;
public static int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f160127;
public static int TextAppearance_AppCompat_SearchResult_Title = 0x7f160128;
public static int TextAppearance_AppCompat_Small = 0x7f160129;
public static int TextAppearance_AppCompat_Small_Inverse = 0x7f16012a;
public static int TextAppearance_AppCompat_Subhead = 0x7f16012b;
public static int TextAppearance_AppCompat_Subhead_Inverse = 0x7f16012c;
public static int TextAppearance_AppCompat_Title = 0x7f16012d;
public static int TextAppearance_AppCompat_Title_Inverse = 0x7f16012e;
public static int TextAppearance_AppCompat_Tooltip = 0x7f16012f;
public static int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f160130;
public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f160131;
public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f160132;
public static int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f160133;
public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f160134;
public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f160135;
public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f160136;
public static int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f160137;
public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f160138;
public static int TextAppearance_AppCompat_Widget_Button = 0x7f160139;
public static int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f16013a;
public static int TextAppearance_AppCompat_Widget_Button_Colored = 0x7f16013b;
public static int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f16013c;
public static int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f16013d;
public static int TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f16013e;
public static int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f16013f;
public static int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f160140;
public static int TextAppearance_AppCompat_Widget_Switch = 0x7f160141;
public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f160142;
public static int TextAppearance_Compat_Notification = 0x7f160147;
public static int TextAppearance_Compat_Notification_Info = 0x7f160148;
public static int TextAppearance_Compat_Notification_Line2 = 0x7f16014a;
public static int TextAppearance_Compat_Notification_Time = 0x7f16014d;
public static int TextAppearance_Compat_Notification_Title = 0x7f16014f;
public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f160151;
public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f160152;
public static int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f160153;
public static int ThemeOverlay_AppCompat = 0x7f16015d;
public static int ThemeOverlay_AppCompat_ActionBar = 0x7f16015e;
public static int ThemeOverlay_AppCompat_Dark = 0x7f16015f;
public static int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f160160;
public static int ThemeOverlay_AppCompat_Dialog = 0x7f160161;
public static int ThemeOverlay_AppCompat_Dialog_Alert = 0x7f160162;
public static int ThemeOverlay_AppCompat_Light = 0x7f160163;
public static int Theme_AppCompat = 0x7f160164;
public static int Theme_AppCompat_CompactMenu = 0x7f160165;
public static int Theme_AppCompat_DayNight = 0x7f160166;
public static int Theme_AppCompat_DayNight_DarkActionBar = 0x7f160167;
public static int Theme_AppCompat_DayNight_Dialog = 0x7f160168;
public static int Theme_AppCompat_DayNight_DialogWhenLarge = 0x7f160169;
public static int Theme_AppCompat_DayNight_Dialog_Alert = 0x7f16016a;
public static int Theme_AppCompat_DayNight_Dialog_MinWidth = 0x7f16016b;
public static int Theme_AppCompat_DayNight_NoActionBar = 0x7f16016c;
public static int Theme_AppCompat_Dialog = 0x7f16016d;
public static int Theme_AppCompat_DialogWhenLarge = 0x7f16016e;
public static int Theme_AppCompat_Dialog_Alert = 0x7f16016f;
public static int Theme_AppCompat_Dialog_MinWidth = 0x7f160170;
public static int Theme_AppCompat_Light = 0x7f160171;
public static int Theme_AppCompat_Light_DarkActionBar = 0x7f160172;
public static int Theme_AppCompat_Light_Dialog = 0x7f160173;
public static int Theme_AppCompat_Light_DialogWhenLarge = 0x7f160174;
public static int Theme_AppCompat_Light_Dialog_Alert = 0x7f160175;
public static int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f160176;
public static int Theme_AppCompat_Light_NoActionBar = 0x7f160177;
public static int Theme_AppCompat_NoActionBar = 0x7f160178;
public static int Widget_AppCompat_ActionBar = 0x7f16018b;
public static int Widget_AppCompat_ActionBar_Solid = 0x7f16018c;
public static int Widget_AppCompat_ActionBar_TabBar = 0x7f16018d;
public static int Widget_AppCompat_ActionBar_TabText = 0x7f16018e;
public static int Widget_AppCompat_ActionBar_TabView = 0x7f16018f;
public static int Widget_AppCompat_ActionButton = 0x7f160190;
public static int Widget_AppCompat_ActionButton_CloseMode = 0x7f160191;
public static int Widget_AppCompat_ActionButton_Overflow = 0x7f160192;
public static int Widget_AppCompat_ActionMode = 0x7f160193;
public static int Widget_AppCompat_ActivityChooserView = 0x7f160194;
public static int Widget_AppCompat_AutoCompleteTextView = 0x7f160195;
public static int Widget_AppCompat_Button = 0x7f160196;
public static int Widget_AppCompat_ButtonBar = 0x7f160197;
public static int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f160198;
public static int Widget_AppCompat_Button_Borderless = 0x7f160199;
public static int Widget_AppCompat_Button_Borderless_Colored = 0x7f16019a;
public static int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f16019b;
public static int Widget_AppCompat_Button_Colored = 0x7f16019c;
public static int Widget_AppCompat_Button_Small = 0x7f16019d;
public static int Widget_AppCompat_CompoundButton_CheckBox = 0x7f16019e;
public static int Widget_AppCompat_CompoundButton_RadioButton = 0x7f16019f;
public static int Widget_AppCompat_CompoundButton_Switch = 0x7f1601a0;
public static int Widget_AppCompat_DrawerArrowToggle = 0x7f1601a1;
public static int Widget_AppCompat_DropDownItem_Spinner = 0x7f1601a2;
public static int Widget_AppCompat_EditText = 0x7f1601a3;
public static int Widget_AppCompat_ImageButton = 0x7f1601a4;
public static int Widget_AppCompat_Light_ActionBar = 0x7f1601a5;
public static int Widget_AppCompat_Light_ActionBar_Solid = 0x7f1601a6;
public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f1601a7;
public static int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f1601a8;
public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f1601a9;
public static int Widget_AppCompat_Light_ActionBar_TabText = 0x7f1601aa;
public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f1601ab;
public static int Widget_AppCompat_Light_ActionBar_TabView = 0x7f1601ac;
public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f1601ad;
public static int Widget_AppCompat_Light_ActionButton = 0x7f1601ae;
public static int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f1601af;
public static int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f1601b0;
public static int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f1601b1;
public static int Widget_AppCompat_Light_ActivityChooserView = 0x7f1601b2;
public static int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f1601b3;
public static int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f1601b4;
public static int Widget_AppCompat_Light_ListPopupWindow = 0x7f1601b5;
public static int Widget_AppCompat_Light_ListView_DropDown = 0x7f1601b6;
public static int Widget_AppCompat_Light_PopupMenu = 0x7f1601b7;
public static int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f1601b8;
public static int Widget_AppCompat_Light_SearchView = 0x7f1601b9;
public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f1601ba;
public static int Widget_AppCompat_ListMenuView = 0x7f1601bb;
public static int Widget_AppCompat_ListPopupWindow = 0x7f1601bc;
public static int Widget_AppCompat_ListView = 0x7f1601bd;
public static int Widget_AppCompat_ListView_DropDown = 0x7f1601be;
public static int Widget_AppCompat_ListView_Menu = 0x7f1601bf;
public static int Widget_AppCompat_PopupMenu = 0x7f1601c0;
public static int Widget_AppCompat_PopupMenu_Overflow = 0x7f1601c1;
public static int Widget_AppCompat_PopupWindow = 0x7f1601c2;
public static int Widget_AppCompat_ProgressBar = 0x7f1601c3;
public static int Widget_AppCompat_ProgressBar_Horizontal = 0x7f1601c4;
public static int Widget_AppCompat_RatingBar = 0x7f1601c5;
public static int Widget_AppCompat_RatingBar_Indicator = 0x7f1601c6;
public static int Widget_AppCompat_RatingBar_Small = 0x7f1601c7;
public static int Widget_AppCompat_SearchView = 0x7f1601c8;
public static int Widget_AppCompat_SearchView_ActionBar = 0x7f1601c9;
public static int Widget_AppCompat_SeekBar = 0x7f1601ca;
public static int Widget_AppCompat_SeekBar_Discrete = 0x7f1601cb;
public static int Widget_AppCompat_Spinner = 0x7f1601cc;
public static int Widget_AppCompat_Spinner_DropDown = 0x7f1601cd;
public static int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f1601ce;
public static int Widget_AppCompat_Spinner_Underlined = 0x7f1601cf;
public static int Widget_AppCompat_TextView_SpinnerItem = 0x7f1601d0;
public static int Widget_AppCompat_Toolbar = 0x7f1601d1;
public static int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f1601d2;
public static int Widget_Compat_NotificationActionContainer = 0x7f1601d3;
public static int Widget_Compat_NotificationActionText = 0x7f1601d4;
public static int Widget_Support_CoordinatorLayout = 0x7f1601d5;
}
public static final class styleable {
public static int[] ActionBar = { 0x7f04003b, 0x7f04003c, 0x7f04003d, 0x7f0400a6, 0x7f0400a7, 0x7f0400a8, 0x7f0400a9, 0x7f0400aa, 0x7f0400ab, 0x7f0400b7, 0x7f0400bf, 0x7f0400c0, 0x7f0400cc, 0x7f0400df, 0x7f0400e0, 0x7f0400e2, 0x7f0400e3, 0x7f0400e4, 0x7f0400eb, 0x7f0400f0, 0x7f04010a, 0x7f04011b, 0x7f04012d, 0x7f040130, 0x7f040131, 0x7f040169, 0x7f04016c, 0x7f040188, 0x7f040191 };
public static int ActionBar_background = 0;
public static int ActionBar_backgroundSplit = 1;
public static int ActionBar_backgroundStacked = 2;
public static int ActionBar_contentInsetEnd = 3;
public static int ActionBar_contentInsetEndWithActions = 4;
public static int ActionBar_contentInsetLeft = 5;
public static int ActionBar_contentInsetRight = 6;
public static int ActionBar_contentInsetStart = 7;
public static int ActionBar_contentInsetStartWithNavigation = 8;
public static int ActionBar_customNavigationLayout = 9;
public static int ActionBar_displayOptions = 10;
public static int ActionBar_divider = 11;
public static int ActionBar_elevation = 12;
public static int ActionBar_height = 13;
public static int ActionBar_hideOnContentScroll = 14;
public static int ActionBar_homeAsUpIndicator = 15;
public static int ActionBar_homeLayout = 16;
public static int ActionBar_icon = 17;
public static int ActionBar_indeterminateProgressStyle = 18;
public static int ActionBar_itemPadding = 19;
public static int ActionBar_logo = 20;
public static int ActionBar_navigationMode = 21;
public static int ActionBar_popupTheme = 22;
public static int ActionBar_progressBarPadding = 23;
public static int ActionBar_progressBarStyle = 24;
public static int ActionBar_subtitle = 25;
public static int ActionBar_subtitleTextStyle = 26;
public static int ActionBar_title = 27;
public static int ActionBar_titleTextStyle = 28;
public static int[] ActionBarLayout = { 0x010100b3 };
public static int ActionBarLayout_android_layout_gravity = 0;
public static int[] ActionMenuItemView = { 0x0101013f };
public static int ActionMenuItemView_android_minWidth = 0;
public static int[] ActionMode = { 0x7f04003b, 0x7f04003c, 0x7f040089, 0x7f0400df, 0x7f04016c, 0x7f040191 };
public static int ActionMode_background = 0;
public static int ActionMode_backgroundSplit = 1;
public static int ActionMode_closeItemLayout = 2;
public static int ActionMode_height = 3;
public static int ActionMode_subtitleTextStyle = 4;
public static int ActionMode_titleTextStyle = 5;
public static int[] ActivityChooserView = { 0x7f0400ce, 0x7f0400ed };
public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 0;
public static int ActivityChooserView_initialActivityCount = 1;
public static int[] AlertDialog = { 0x010100f2, 0x7f04004a, 0x7f04004b, 0x7f040100, 0x7f040101, 0x7f040118, 0x7f040157, 0x7f040159 };
public static int AlertDialog_android_layout = 0;
public static int AlertDialog_buttonIconDimen = 1;
public static int AlertDialog_buttonPanelSideLayout = 2;
public static int AlertDialog_listItemLayout = 3;
public static int AlertDialog_listLayout = 4;
public static int AlertDialog_multiChoiceItemLayout = 5;
public static int AlertDialog_showTitle = 6;
public static int AlertDialog_singleChoiceItemLayout = 7;
public static int[] AppCompatImageView = { 0x01010119, 0x7f040160, 0x7f040186, 0x7f040187 };
public static int AppCompatImageView_android_src = 0;
public static int AppCompatImageView_srcCompat = 1;
public static int AppCompatImageView_tint = 2;
public static int AppCompatImageView_tintMode = 3;
public static int[] AppCompatSeekBar = { 0x01010142, 0x7f040183, 0x7f040184, 0x7f040185 };
public static int AppCompatSeekBar_android_thumb = 0;
public static int AppCompatSeekBar_tickMark = 1;
public static int AppCompatSeekBar_tickMarkTint = 2;
public static int AppCompatSeekBar_tickMarkTintMode = 3;
public static int[] AppCompatTextHelper = { 0x0101016e, 0x01010393, 0x0101016f, 0x01010170, 0x01010392, 0x0101016d, 0x01010034 };
public static int AppCompatTextHelper_android_drawableBottom = 0;
public static int AppCompatTextHelper_android_drawableEnd = 1;
public static int AppCompatTextHelper_android_drawableLeft = 2;
public static int AppCompatTextHelper_android_drawableRight = 3;
public static int AppCompatTextHelper_android_drawableStart = 4;
public static int AppCompatTextHelper_android_drawableTop = 5;
public static int AppCompatTextHelper_android_textAppearance = 6;
public static int[] AppCompatTextView = { 0x01010034, 0x7f040035, 0x7f040036, 0x7f040037, 0x7f040038, 0x7f040039, 0x7f0400d2, 0x7f040173 };
public static int AppCompatTextView_android_textAppearance = 0;
public static int AppCompatTextView_autoSizeMaxTextSize = 1;
public static int AppCompatTextView_autoSizeMinTextSize = 2;
public static int AppCompatTextView_autoSizePresetSizes = 3;
public static int AppCompatTextView_autoSizeStepGranularity = 4;
public static int AppCompatTextView_autoSizeTextType = 5;
public static int AppCompatTextView_fontFamily = 6;
public static int AppCompatTextView_textAllCaps = 7;
public static int[] AppCompatTheme = { 0x7f040001, 0x7f040002, 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c, 0x7f04000d, 0x7f04000f, 0x7f040010, 0x7f040011, 0x7f040012, 0x7f040013, 0x7f040014, 0x7f040015, 0x7f040016, 0x7f040017, 0x7f040018, 0x7f040019, 0x7f04001a, 0x7f04001b, 0x7f04001c, 0x7f04001d, 0x7f04001e, 0x7f04001f, 0x7f040022, 0x7f040028, 0x7f040029, 0x7f04002a, 0x7f04002b, 0x010100ae, 0x01010057, 0x7f040034, 0x7f040042, 0x7f040044, 0x7f040045, 0x7f040046, 0x7f040047, 0x7f040048, 0x7f04004d, 0x7f04004e, 0x7f040081, 0x7f040082, 0x7f04008d, 0x7f04008e, 0x7f04008f, 0x7f040090, 0x7f040091, 0x7f040092, 0x7f040093, 0x7f040094, 0x7f040095, 0x7f040097, 0x7f0400b2, 0x7f0400bd, 0x7f0400be, 0x7f0400c1, 0x7f0400c3, 0x7f0400c7, 0x7f0400c8, 0x7f0400c9, 0x7f0400ca, 0x7f0400cb, 0x7f0400e2, 0x7f0400ea, 0x7f0400fe, 0x7f0400ff, 0x7f040102, 0x7f040103, 0x7f040104, 0x7f040105, 0x7f040106, 0x7f040107, 0x7f040108, 0x7f040123, 0x7f040124, 0x7f040125, 0x7f04012c, 0x7f04012e, 0x7f040134, 0x7f040135, 0x7f040136, 0x7f040137, 0x7f040147, 0x7f04014f, 0x7f040150, 0x7f040151, 0x7f04015d, 0x7f04015e, 0x7f040171, 0x7f040174, 0x7f040175, 0x7f040176, 0x7f040177, 0x7f040178, 0x7f040179, 0x7f04017a, 0x7f04017b, 0x7f04017c, 0x7f04017d, 0x7f040193, 0x7f040194, 0x7f040196, 0x7f040197, 0x7f0401ac, 0x7f0401b1, 0x7f0401b2, 0x7f0401b3, 0x7f0401b4, 0x7f0401b5, 0x7f0401b6, 0x7f0401b7, 0x7f0401b8, 0x7f0401b9, 0x7f0401ba };
public static int AppCompatTheme_actionBarDivider = 0;
public static int AppCompatTheme_actionBarItemBackground = 1;
public static int AppCompatTheme_actionBarPopupTheme = 2;
public static int AppCompatTheme_actionBarSize = 3;
public static int AppCompatTheme_actionBarSplitStyle = 4;
public static int AppCompatTheme_actionBarStyle = 5;
public static int AppCompatTheme_actionBarTabBarStyle = 6;
public static int AppCompatTheme_actionBarTabStyle = 7;
public static int AppCompatTheme_actionBarTabTextStyle = 8;
public static int AppCompatTheme_actionBarTheme = 9;
public static int AppCompatTheme_actionBarWidgetTheme = 10;
public static int AppCompatTheme_actionButtonStyle = 11;
public static int AppCompatTheme_actionDropDownStyle = 12;
public static int AppCompatTheme_actionMenuTextAppearance = 13;
public static int AppCompatTheme_actionMenuTextColor = 14;
public static int AppCompatTheme_actionModeBackground = 15;
public static int AppCompatTheme_actionModeCloseButtonStyle = 16;
public static int AppCompatTheme_actionModeCloseDrawable = 17;
public static int AppCompatTheme_actionModeCopyDrawable = 18;
public static int AppCompatTheme_actionModeCutDrawable = 19;
public static int AppCompatTheme_actionModeFindDrawable = 20;
public static int AppCompatTheme_actionModePasteDrawable = 21;
public static int AppCompatTheme_actionModePopupWindowStyle = 22;
public static int AppCompatTheme_actionModeSelectAllDrawable = 23;
public static int AppCompatTheme_actionModeShareDrawable = 24;
public static int AppCompatTheme_actionModeSplitBackground = 25;
public static int AppCompatTheme_actionModeStyle = 26;
public static int AppCompatTheme_actionModeWebSearchDrawable = 27;
public static int AppCompatTheme_actionOverflowButtonStyle = 28;
public static int AppCompatTheme_actionOverflowMenuStyle = 29;
public static int AppCompatTheme_activityChooserViewStyle = 30;
public static int AppCompatTheme_alertDialogButtonGroupStyle = 31;
public static int AppCompatTheme_alertDialogCenterButtons = 32;
public static int AppCompatTheme_alertDialogStyle = 33;
public static int AppCompatTheme_alertDialogTheme = 34;
public static int AppCompatTheme_android_windowAnimationStyle = 35;
public static int AppCompatTheme_android_windowIsFloating = 36;
public static int AppCompatTheme_autoCompleteTextViewStyle = 37;
public static int AppCompatTheme_borderlessButtonStyle = 38;
public static int AppCompatTheme_buttonBarButtonStyle = 39;
public static int AppCompatTheme_buttonBarNegativeButtonStyle = 40;
public static int AppCompatTheme_buttonBarNeutralButtonStyle = 41;
public static int AppCompatTheme_buttonBarPositiveButtonStyle = 42;
public static int AppCompatTheme_buttonBarStyle = 43;
public static int AppCompatTheme_buttonStyle = 44;
public static int AppCompatTheme_buttonStyleSmall = 45;
public static int AppCompatTheme_checkboxStyle = 46;
public static int AppCompatTheme_checkedTextViewStyle = 47;
public static int AppCompatTheme_colorAccent = 48;
public static int AppCompatTheme_colorBackgroundFloating = 49;
public static int AppCompatTheme_colorButtonNormal = 50;
public static int AppCompatTheme_colorControlActivated = 51;
public static int AppCompatTheme_colorControlHighlight = 52;
public static int AppCompatTheme_colorControlNormal = 53;
public static int AppCompatTheme_colorError = 54;
public static int AppCompatTheme_colorPrimary = 55;
public static int AppCompatTheme_colorPrimaryDark = 56;
public static int AppCompatTheme_colorSwitchThumbNormal = 57;
public static int AppCompatTheme_controlBackground = 58;
public static int AppCompatTheme_dialogPreferredPadding = 59;
public static int AppCompatTheme_dialogTheme = 60;
public static int AppCompatTheme_dividerHorizontal = 61;
public static int AppCompatTheme_dividerVertical = 62;
public static int AppCompatTheme_dropDownListViewStyle = 63;
public static int AppCompatTheme_dropdownListPreferredItemHeight = 64;
public static int AppCompatTheme_editTextBackground = 65;
public static int AppCompatTheme_editTextColor = 66;
public static int AppCompatTheme_editTextStyle = 67;
public static int AppCompatTheme_homeAsUpIndicator = 68;
public static int AppCompatTheme_imageButtonStyle = 69;
public static int AppCompatTheme_listChoiceBackgroundIndicator = 70;
public static int AppCompatTheme_listDividerAlertDialog = 71;
public static int AppCompatTheme_listMenuViewStyle = 72;
public static int AppCompatTheme_listPopupWindowStyle = 73;
public static int AppCompatTheme_listPreferredItemHeight = 74;
public static int AppCompatTheme_listPreferredItemHeightLarge = 75;
public static int AppCompatTheme_listPreferredItemHeightSmall = 76;
public static int AppCompatTheme_listPreferredItemPaddingLeft = 77;
public static int AppCompatTheme_listPreferredItemPaddingRight = 78;
public static int AppCompatTheme_panelBackground = 79;
public static int AppCompatTheme_panelMenuListTheme = 80;
public static int AppCompatTheme_panelMenuListWidth = 81;
public static int AppCompatTheme_popupMenuStyle = 82;
public static int AppCompatTheme_popupWindowStyle = 83;
public static int AppCompatTheme_radioButtonStyle = 84;
public static int AppCompatTheme_ratingBarStyle = 85;
public static int AppCompatTheme_ratingBarStyleIndicator = 86;
public static int AppCompatTheme_ratingBarStyleSmall = 87;
public static int AppCompatTheme_searchViewStyle = 88;
public static int AppCompatTheme_seekBarStyle = 89;
public static int AppCompatTheme_selectableItemBackground = 90;
public static int AppCompatTheme_selectableItemBackgroundBorderless = 91;
public static int AppCompatTheme_spinnerDropDownItemStyle = 92;
public static int AppCompatTheme_spinnerStyle = 93;
public static int AppCompatTheme_switchStyle = 94;
public static int AppCompatTheme_textAppearanceLargePopupMenu = 95;
public static int AppCompatTheme_textAppearanceListItem = 96;
public static int AppCompatTheme_textAppearanceListItemSecondary = 97;
public static int AppCompatTheme_textAppearanceListItemSmall = 98;
public static int AppCompatTheme_textAppearancePopupMenuHeader = 99;
public static int AppCompatTheme_textAppearanceSearchResultSubtitle = 100;
public static int AppCompatTheme_textAppearanceSearchResultTitle = 101;
public static int AppCompatTheme_textAppearanceSmallPopupMenu = 102;
public static int AppCompatTheme_textColorAlertDialogListItem = 103;
public static int AppCompatTheme_textColorSearchUrl = 104;
public static int AppCompatTheme_toolbarNavigationButtonStyle = 105;
public static int AppCompatTheme_toolbarStyle = 106;
public static int AppCompatTheme_tooltipForegroundColor = 107;
public static int AppCompatTheme_tooltipFrameBackground = 108;
public static int AppCompatTheme_viewInflaterClass = 109;
public static int AppCompatTheme_windowActionBar = 110;
public static int AppCompatTheme_windowActionBarOverlay = 111;
public static int AppCompatTheme_windowActionModeOverlay = 112;
public static int AppCompatTheme_windowFixedHeightMajor = 113;
public static int AppCompatTheme_windowFixedHeightMinor = 114;
public static int AppCompatTheme_windowFixedWidthMajor = 115;
public static int AppCompatTheme_windowFixedWidthMinor = 116;
public static int AppCompatTheme_windowMinWidthMajor = 117;
public static int AppCompatTheme_windowMinWidthMinor = 118;
public static int AppCompatTheme_windowNoTitle = 119;
public static int[] ButtonBarLayout = { 0x7f04002d };
public static int ButtonBarLayout_allowStacking = 0;
public static int[] ColorStateListItem = { 0x7f04002e, 0x0101031f, 0x010101a5 };
public static int ColorStateListItem_alpha = 0;
public static int ColorStateListItem_android_alpha = 1;
public static int ColorStateListItem_android_color = 2;
public static int[] CompoundButton = { 0x01010107, 0x7f04004f, 0x7f040050 };
public static int CompoundButton_android_button = 0;
public static int CompoundButton_buttonTint = 1;
public static int CompoundButton_buttonTintMode = 2;
public static int[] CoordinatorLayout = { 0x7f0400f1, 0x7f040165 };
public static int CoordinatorLayout_keylines = 0;
public static int CoordinatorLayout_statusBarBackground = 1;
public static int[] CoordinatorLayout_Layout = { 0x010100b3, 0x7f0400f8, 0x7f0400f9, 0x7f0400fa, 0x7f0400fb, 0x7f0400fc, 0x7f0400fd };
public static int CoordinatorLayout_Layout_android_layout_gravity = 0;
public static int CoordinatorLayout_Layout_layout_anchor = 1;
public static int CoordinatorLayout_Layout_layout_anchorGravity = 2;
public static int CoordinatorLayout_Layout_layout_behavior = 3;
public static int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4;
public static int CoordinatorLayout_Layout_layout_insetEdge = 5;
public static int CoordinatorLayout_Layout_layout_keyline = 6;
public static int[] DrawerArrowToggle = { 0x7f040032, 0x7f040033, 0x7f040040, 0x7f04008c, 0x7f0400c5, 0x7f0400dd, 0x7f04015c, 0x7f04017f };
public static int DrawerArrowToggle_arrowHeadLength = 0;
public static int DrawerArrowToggle_arrowShaftLength = 1;
public static int DrawerArrowToggle_barLength = 2;
public static int DrawerArrowToggle_color = 3;
public static int DrawerArrowToggle_drawableSize = 4;
public static int DrawerArrowToggle_gapBetweenBars = 5;
public static int DrawerArrowToggle_spinBars = 6;
public static int DrawerArrowToggle_thickness = 7;
public static int[] FontFamily = { 0x7f0400d3, 0x7f0400d4, 0x7f0400d5, 0x7f0400d6, 0x7f0400d7, 0x7f0400d8 };
public static int FontFamily_fontProviderAuthority = 0;
public static int FontFamily_fontProviderCerts = 1;
public static int FontFamily_fontProviderFetchStrategy = 2;
public static int FontFamily_fontProviderFetchTimeout = 3;
public static int FontFamily_fontProviderPackage = 4;
public static int FontFamily_fontProviderQuery = 5;
public static int[] FontFamilyFont = { 0x01010532, 0x0101053f, 0x01010533, 0x7f0400d1, 0x7f0400d9, 0x7f0400da };
public static int FontFamilyFont_android_font = 0;
public static int FontFamilyFont_android_fontStyle = 1;
public static int FontFamilyFont_android_fontWeight = 2;
public static int FontFamilyFont_font = 3;
public static int FontFamilyFont_fontStyle = 4;
public static int FontFamilyFont_fontWeight = 5;
public static int[] LinearLayoutCompat = { 0x01010126, 0x01010127, 0x010100af, 0x010100c4, 0x01010128, 0x7f0400c0, 0x7f0400c2, 0x7f040117, 0x7f040155 };
public static int LinearLayoutCompat_android_baselineAligned = 0;
public static int LinearLayoutCompat_android_baselineAlignedChildIndex = 1;
public static int LinearLayoutCompat_android_gravity = 2;
public static int LinearLayoutCompat_android_orientation = 3;
public static int LinearLayoutCompat_android_weightSum = 4;
public static int LinearLayoutCompat_divider = 5;
public static int LinearLayoutCompat_dividerPadding = 6;
public static int LinearLayoutCompat_measureWithLargestChild = 7;
public static int LinearLayoutCompat_showDividers = 8;
public static int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f5, 0x01010181, 0x010100f4 };
public static int LinearLayoutCompat_Layout_android_layout_gravity = 0;
public static int LinearLayoutCompat_Layout_android_layout_height = 1;
public static int LinearLayoutCompat_Layout_android_layout_weight = 2;
public static int LinearLayoutCompat_Layout_android_layout_width = 3;
public static int[] ListPopupWindow = { 0x010102ac, 0x010102ad };
public static int ListPopupWindow_android_dropDownHorizontalOffset = 0;
public static int ListPopupWindow_android_dropDownVerticalOffset = 1;
public static int[] MenuGroup = { 0x010101e0, 0x0101000e, 0x010100d0, 0x010101de, 0x010101df, 0x01010194 };
public static int MenuGroup_android_checkableBehavior = 0;
public static int MenuGroup_android_enabled = 1;
public static int MenuGroup_android_id = 2;
public static int MenuGroup_android_menuCategory = 3;
public static int MenuGroup_android_orderInCategory = 4;
public static int MenuGroup_android_visible = 5;
public static int[] MenuItem = { 0x7f04000e, 0x7f040020, 0x7f040021, 0x7f04002f, 0x010101e3, 0x010101e5, 0x01010106, 0x0101000e, 0x01010002, 0x010100d0, 0x010101de, 0x010101e4, 0x0101026f, 0x010101df, 0x010101e1, 0x010101e2, 0x01010194, 0x7f0400a5, 0x7f0400e5, 0x7f0400e6, 0x7f04011d, 0x7f040154, 0x7f040198 };
public static int MenuItem_actionLayout = 0;
public static int MenuItem_actionProviderClass = 1;
public static int MenuItem_actionViewClass = 2;
public static int MenuItem_alphabeticModifiers = 3;
public static int MenuItem_android_alphabeticShortcut = 4;
public static int MenuItem_android_checkable = 5;
public static int MenuItem_android_checked = 6;
public static int MenuItem_android_enabled = 7;
public static int MenuItem_android_icon = 8;
public static int MenuItem_android_id = 9;
public static int MenuItem_android_menuCategory = 10;
public static int MenuItem_android_numericShortcut = 11;
public static int MenuItem_android_onClick = 12;
public static int MenuItem_android_orderInCategory = 13;
public static int MenuItem_android_title = 14;
public static int MenuItem_android_titleCondensed = 15;
public static int MenuItem_android_visible = 16;
public static int MenuItem_contentDescription = 17;
public static int MenuItem_iconTint = 18;
public static int MenuItem_iconTintMode = 19;
public static int MenuItem_numericModifiers = 20;
public static int MenuItem_showAsAction = 21;
public static int MenuItem_tooltipText = 22;
public static int[] MenuView = { 0x0101012f, 0x0101012d, 0x01010130, 0x01010131, 0x0101012c, 0x0101012e, 0x010100ae, 0x7f04012f, 0x7f040166 };
public static int MenuView_android_headerBackground = 0;
public static int MenuView_android_horizontalDivider = 1;
public static int MenuView_android_itemBackground = 2;
public static int MenuView_android_itemIconDisabledAlpha = 3;
public static int MenuView_android_itemTextAppearance = 4;
public static int MenuView_android_verticalDivider = 5;
public static int MenuView_android_windowAnimationStyle = 6;
public static int MenuView_preserveIconSpacing = 7;
public static int MenuView_subMenuArrow = 8;
public static int[] PopupWindow = { 0x010102c9, 0x01010176, 0x7f04011e };
public static int PopupWindow_android_popupAnimationStyle = 0;
public static int PopupWindow_android_popupBackground = 1;
public static int PopupWindow_overlapAnchor = 2;
public static int[] PopupWindowBackgroundState = { 0x7f040162 };
public static int PopupWindowBackgroundState_state_above_anchor = 0;
public static int[] RecycleListView = { 0x7f04011f, 0x7f040122 };
public static int RecycleListView_paddingBottomNoButtons = 0;
public static int RecycleListView_paddingTopNoTitle = 1;
public static int[] SearchView = { 0x010100da, 0x01010264, 0x01010220, 0x0101011f, 0x7f040088, 0x7f0400a4, 0x7f0400bb, 0x7f0400de, 0x7f0400e7, 0x7f0400f6, 0x7f040132, 0x7f040133, 0x7f040144, 0x7f040145, 0x7f040167, 0x7f04016d, 0x7f0401ad };
public static int SearchView_android_focusable = 0;
public static int SearchView_android_imeOptions = 1;
public static int SearchView_android_inputType = 2;
public static int SearchView_android_maxWidth = 3;
public static int SearchView_closeIcon = 4;
public static int SearchView_commitIcon = 5;
public static int SearchView_defaultQueryHint = 6;
public static int SearchView_goIcon = 7;
public static int SearchView_iconifiedByDefault = 8;
public static int SearchView_layout = 9;
public static int SearchView_queryBackground = 10;
public static int SearchView_queryHint = 11;
public static int SearchView_searchHintIcon = 12;
public static int SearchView_searchIcon = 13;
public static int SearchView_submitBackground = 14;
public static int SearchView_suggestionRowLayout = 15;
public static int SearchView_voiceIcon = 16;
public static int[] Spinner = { 0x01010262, 0x010100b2, 0x01010176, 0x0101017b, 0x7f04012d };
public static int Spinner_android_dropDownWidth = 0;
public static int Spinner_android_entries = 1;
public static int Spinner_android_popupBackground = 2;
public static int Spinner_android_prompt = 3;
public static int Spinner_popupTheme = 4;
public static int[] SwitchCompat = { 0x01010125, 0x01010124, 0x01010142, 0x7f040156, 0x7f04015f, 0x7f04016f, 0x7f040170, 0x7f040172, 0x7f040180, 0x7f040181, 0x7f040182, 0x7f04019a, 0x7f04019b, 0x7f04019c };
public static int SwitchCompat_android_textOff = 0;
public static int SwitchCompat_android_textOn = 1;
public static int SwitchCompat_android_thumb = 2;
public static int SwitchCompat_showText = 3;
public static int SwitchCompat_splitTrack = 4;
public static int SwitchCompat_switchMinWidth = 5;
public static int SwitchCompat_switchPadding = 6;
public static int SwitchCompat_switchTextAppearance = 7;
public static int SwitchCompat_thumbTextPadding = 8;
public static int SwitchCompat_thumbTint = 9;
public static int SwitchCompat_thumbTintMode = 10;
public static int SwitchCompat_track = 11;
public static int SwitchCompat_trackTint = 12;
public static int SwitchCompat_trackTintMode = 13;
public static int[] TextAppearance = { 0x010103ac, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x01010098, 0x0101009a, 0x0101009b, 0x01010095, 0x01010097, 0x01010096, 0x7f0400d2, 0x7f040173 };
public static int TextAppearance_android_fontFamily = 0;
public static int TextAppearance_android_shadowColor = 1;
public static int TextAppearance_android_shadowDx = 2;
public static int TextAppearance_android_shadowDy = 3;
public static int TextAppearance_android_shadowRadius = 4;
public static int TextAppearance_android_textColor = 5;
public static int TextAppearance_android_textColorHint = 6;
public static int TextAppearance_android_textColorLink = 7;
public static int TextAppearance_android_textSize = 8;
public static int TextAppearance_android_textStyle = 9;
public static int TextAppearance_android_typeface = 10;
public static int TextAppearance_fontFamily = 11;
public static int TextAppearance_textAllCaps = 12;
public static int[] Toolbar = { 0x010100af, 0x01010140, 0x7f040049, 0x7f04008a, 0x7f04008b, 0x7f0400a6, 0x7f0400a7, 0x7f0400a8, 0x7f0400a9, 0x7f0400aa, 0x7f0400ab, 0x7f04010a, 0x7f04010b, 0x7f040116, 0x7f040119, 0x7f04011a, 0x7f04012d, 0x7f040169, 0x7f04016a, 0x7f04016b, 0x7f040188, 0x7f040189, 0x7f04018a, 0x7f04018b, 0x7f04018c, 0x7f04018d, 0x7f04018e, 0x7f04018f, 0x7f040190 };
public static int Toolbar_android_gravity = 0;
public static int Toolbar_android_minHeight = 1;
public static int Toolbar_buttonGravity = 2;
public static int Toolbar_collapseContentDescription = 3;
public static int Toolbar_collapseIcon = 4;
public static int Toolbar_contentInsetEnd = 5;
public static int Toolbar_contentInsetEndWithActions = 6;
public static int Toolbar_contentInsetLeft = 7;
public static int Toolbar_contentInsetRight = 8;
public static int Toolbar_contentInsetStart = 9;
public static int Toolbar_contentInsetStartWithNavigation = 10;
public static int Toolbar_logo = 11;
public static int Toolbar_logoDescription = 12;
public static int Toolbar_maxButtonHeight = 13;
public static int Toolbar_navigationContentDescription = 14;
public static int Toolbar_navigationIcon = 15;
public static int Toolbar_popupTheme = 16;
public static int Toolbar_subtitle = 17;
public static int Toolbar_subtitleTextAppearance = 18;
public static int Toolbar_subtitleTextColor = 19;
public static int Toolbar_title = 20;
public static int Toolbar_titleMargin = 21;
public static int Toolbar_titleMarginBottom = 22;
public static int Toolbar_titleMarginEnd = 23;
public static int Toolbar_titleMarginStart = 24;
public static int Toolbar_titleMarginTop = 25;
public static int Toolbar_titleMargins = 26;
public static int Toolbar_titleTextAppearance = 27;
public static int Toolbar_titleTextColor = 28;
public static int[] View = { 0x010100da, 0x01010000, 0x7f040120, 0x7f040121, 0x7f04017e };
public static int View_android_focusable = 0;
public static int View_android_theme = 1;
public static int View_paddingEnd = 2;
public static int View_paddingStart = 3;
public static int View_theme = 4;
public static int[] ViewBackgroundHelper = { 0x010100d4, 0x7f04003e, 0x7f04003f };
public static int ViewBackgroundHelper_android_background = 0;
public static int ViewBackgroundHelper_backgroundTint = 1;
public static int ViewBackgroundHelper_backgroundTintMode = 2;
public static int[] ViewStubCompat = { 0x010100d0, 0x010100f3, 0x010100f2 };
public static int ViewStubCompat_android_id = 0;
public static int ViewStubCompat_android_inflatedId = 1;
public static int ViewStubCompat_android_layout = 2;
}
}
| [
"roy.smith0820@gmail.com"
] | roy.smith0820@gmail.com |
39e49722743ab25e286e80c2e064b43e7ea7868c | a37e820b66eecd528c427f730865a38a4498f5e7 | /LWJGL_3D/src/test/Main.java | 3a1a289cb09896f334b8f331ad620f29b624ba4b | [] | no_license | Stiffty/Eclipse | 0e74cb3cd52152fd8ace626ff75179b12793b62c | 664508ff6a309cc236bb5736f13874b345d77c14 | refs/heads/master | 2023-02-24T09:36:11.716128 | 2021-02-02T09:31:40 | 2021-02-02T09:31:40 | 173,150,512 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,203 | java | package test;
import org.lwjgl.glfw.GLFW;
import org.lwjgl.glfw.GLFWCursorPosCallback;
import org.lwjgl.glfw.GLFWKeyCallback;
import org.lwjgl.glfw.GLFWMouseButtonCallback;
import org.lwjgl.glfw.GLFWVidMode;
public class Main {
private static long window;
private GLFWCursorPosCallback mousepos = new GLFWCursorPosCallback() {
@Override
public void invoke(long window, double x, double y) {
// TODO Auto-generated method stub
GLFW.glfwSetWindowTitle(window, "Test | x: " + x + " y: "+ y);
}
};
public static void main(String[] args) {
// TODO Auto-generated method stub
Main m = new Main();
while(!GLFW.glfwWindowShouldClose(window)) {
GLFW.glfwPollEvents();
GLFW.glfwSwapBuffers(window);
}
}
public Main() {
GLFW.glfwInit();
window = GLFW.glfwCreateWindow(1000, 1000, "test", 0, 0);
GLFWVidMode videoMode = GLFW.glfwGetVideoMode(GLFW.glfwGetPrimaryMonitor());
GLFW.glfwSetWindowPos(window, videoMode.width()/2, videoMode.height()/2);
GLFW.glfwMakeContextCurrent(window);
GLFW.glfwSetCursorPosCallback(window, mousepos);
GLFW.glfwShowWindow(window);
GLFW.glfwSwapInterval(0);
}
}
| [
"el.ach@gmx.de"
] | el.ach@gmx.de |
d6e2940f58d37f7b3ba84869dbbc9b1744b74e26 | abad3340f5707735db6821a13da16822d305e083 | /src/main/java/com/life/pattern/Strategy/YFDisCount.java | 9e5f8f64d461f9edd21439b1a74f8b6e8ee68520 | [] | no_license | qiruipeng/hit | feec075b29ed3492e85284335b3d4cb05712faf4 | d623a1723a37f68a309bcfea430b63b74f57c21e | refs/heads/master | 2022-07-12T07:25:11.943897 | 2019-11-20T06:23:54 | 2019-11-20T06:23:54 | 202,324,823 | 1 | 0 | null | 2022-06-30T21:57:58 | 2019-08-14T10:04:16 | Java | UTF-8 | Java | false | false | 315 | java | package com.life.pattern.Strategy;
import java.math.BigDecimal;
/**
* 衣服类打八折
* @author: qirp
* @since: 2019/9/2 11:23
**/
public class YFDisCount implements DisCount{
@Override
public BigDecimal geiFinalPrice(BigDecimal price) {
return price.multiply(new BigDecimal(0.8));
}
}
| [
"ruipengqi@huashenghaoche.com"
] | ruipengqi@huashenghaoche.com |
9a5c953c410c3cb51b54aef2b5d3d86e062393bf | 71822a90e3148d047a6d0bcbedb13ddc215802b8 | /admin/src/main/java/com/kt/midas/adm/web/login/dao/LoginDao.java | b6e4aa2fc2c297b9bdcea60733033a645511bed5 | [] | no_license | jindragona/clip_combine | ee6013ed498da96ba361436312c26fc924bbbaa5 | 7846e7a46afca2cd7a3041a8764e3ca310ef947f | refs/heads/master | 2021-01-21T21:32:25.931211 | 2017-06-23T03:23:54 | 2017-06-23T03:23:54 | 94,858,068 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,105 | java | /*
* MIDAS version 1.0
*
* Copyright ⓒ 2017 kt corp. All rights reserved.
*
* This is a proprietary software of kt corp, and you may not use this file except in
* compliance with license agreement with kt corp. Any redistribution or use of this
* software, with or without modification shall be strictly prohibited without prior written
* approval of kt corp, and the copyright notice above does not evidence any actual or
* intended publication of such software.
*/
package com.kt.midas.adm.web.login.dao;
import java.util.List;
import com.kt.midas.adm.common.vo.CommonManagerVO;
import com.kt.midas.adm.web.login.vo.UserAuthMenuSearchTO;
import com.kt.midas.adm.web.menu.vo.MenuTreeVO;
public interface LoginDao {
public CommonManagerVO selectByPK(String userId);
public void insertLoginHist(CommonManagerVO commonManager);
public void updateLoginHist(CommonManagerVO commonManager);
public void updateByPK(CommonManagerVO commonManager);
public List<MenuTreeVO> selectAuthUppMenuList(String userId);
public List<MenuTreeVO> selectAuthMenuList(UserAuthMenuSearchTO to);
}
| [
"jindragona@gmail.com"
] | jindragona@gmail.com |
15f4859f8cb943e2161b55d9e7b25f5f80ea7b6d | 45c99cd4bb2175e404d4565a2a46c07880339e66 | /sample/target/generated-sources/r/com/viewpagerindicator/sample/Manifest.java | a2a5ff5430d7d189819c81deb6861dd00616df0e | [
"Apache-2.0"
] | permissive | Serg0209/AndroAplication | 94696d3baa8127d24720abbe6b6d55a4d899f42a | 5edc02d24e789edea3cb0715028fed348602aedd | refs/heads/master | 2021-01-23T00:14:41.440892 | 2015-08-08T08:20:25 | 2015-08-08T08:20:25 | 40,396,463 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 207 | java | /*___Generated_by_IDEA___*/
package com.viewpagerindicator.sample;
/* This stub is only used by the IDE. It is NOT the Manifest class actually packed into the APK */
public final class
Manifest {
} | [
"sergdaren0209@gmail.com"
] | sergdaren0209@gmail.com |
c44151cb534ca574d3cda6abd2db10ce12dc6b68 | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/2/2_b7bc7e60f9677cc0e96103349553169e2c7cea86/StatusObject/2_b7bc7e60f9677cc0e96103349553169e2c7cea86_StatusObject_t.java | 631877f3d59f969fa855ffaddf2325b066e16264 | [] | no_license | zhongxingyu/Seer | 48e7e5197624d7afa94d23f849f8ea2075bcaec0 | c11a3109fdfca9be337e509ecb2c085b60076213 | refs/heads/master | 2023-07-06T12:48:55.516692 | 2023-06-22T07:55:56 | 2023-06-22T07:55:56 | 259,613,157 | 6 | 2 | null | 2023-06-22T07:55:57 | 2020-04-28T11:07:49 | null | UTF-8 | Java | false | false | 6,836 | java | package grisu.model.status;
import grisu.control.ServiceInterface;
import grisu.control.exceptions.StatusException;
import grisu.model.dto.DtoActionStatus;
import java.util.Date;
import java.util.Enumeration;
import java.util.Vector;
import java.util.concurrent.CountDownLatch;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class StatusObject {
public interface Listener {
public void statusMessage(ActionStatusEvent event);
}
static final Logger myLogger = LoggerFactory.getLogger(StatusObject.class
.getName());
public static StatusObject waitForActionToFinish(ServiceInterface si, String handle)
throws StatusException {
return waitForActionToFinish(si, handle, 10, false);
}
public static StatusObject waitForActionToFinish(ServiceInterface si,
String handle, int recheckIntervalInSeconds, boolean exitIfFailed)
throws StatusException {
return waitForActionToFinish(si, handle, recheckIntervalInSeconds,
exitIfFailed, -1);
}
public static StatusObject waitForActionToFinish(ServiceInterface si,
String handle, int recheckIntervalInSeconds, boolean exitIfFailed,
int treshold_in_secs) throws StatusException {
final StatusObject temp = new StatusObject(si, handle);
temp.waitForActionToFinish(recheckIntervalInSeconds,
exitIfFailed, treshold_in_secs);
return temp;
}
private final ServiceInterface si;
private final String handle;
private volatile Thread t = null;
private Vector<Listener> listeners;
private DtoActionStatus lastStatus;
private double lastPercentage = 0;
private boolean taskFinished = false;
private final DtoActionStatus origStatus;
private long startMonitoringTime = -1;
private long finishedMonitoringTime = -1;
private volatile boolean waitWasInterrupted = false;
private final CountDownLatch finished = new CountDownLatch(1);
public StatusObject(DtoActionStatus s) {
this.origStatus = s;
this.si = null;
this.handle = s.getHandle();
}
public StatusObject(ServiceInterface si, String handle) {
this(si, handle, (Vector) null);
}
public StatusObject(ServiceInterface si, String handle, Listener l) {
this(si, handle, (Vector) null);
addListener(l);
}
public StatusObject(ServiceInterface si, String handle,
Vector<Listener> listeners) {
this.si = si;
this.origStatus = null;
this.handle = handle;
this.listeners = listeners;
if (listeners != null) {
for (final Listener l : listeners) {
addListener(l);
}
}
}
synchronized public void addListener(Listener l) {
if (listeners == null) {
listeners = new Vector();
}
listeners.addElement(l);
}
private synchronized void createWaitThread(final int waitTime,
final int thresholdInSeconds) {
if (t == null) {
t = new Thread() {
@Override
public void run() {
while (!getStatus().isFinished()) {
try {
if ((thresholdInSeconds >= 0)
&& ((new Date().getTime() - startMonitoringTime) > (thresholdInSeconds * 1000))) {
throw new InterruptedException(
"Threshold for task monitoring exceeded. Not waiting any longer...");
}
myLogger.debug("Waiting for task {} to finish...",
handle);
Thread.sleep(waitTime * 1000);
} catch (final InterruptedException e) {
myLogger.error(e.getLocalizedMessage(), e);
waitWasInterrupted = true;
break;
}
}
finishedMonitoringTime = new Date().getTime();
finished.countDown();
}
};
t.setName("Wait thread for status: " + handle);
startMonitoringTime = new Date().getTime();
t.start();
}
}
private void fireEvent(ActionStatusEvent message) {
if ((listeners != null) && !listeners.isEmpty()) {
// make a copy of the listener list in case
// anyone adds/removes mountPointsListeners
Vector targets;
synchronized (this) {
targets = (Vector) listeners.clone();
}
// walk through the listener list and
// call the gridproxychanged method in each
final Enumeration e = targets.elements();
while (e.hasMoreElements()) {
final Listener l = (Listener) e.nextElement();
l.statusMessage(message);
}
}
}
public String getHandle() {
return this.handle;
}
public synchronized DtoActionStatus getStatus() {
if (taskFinished) {
return lastStatus;
}
myLogger.debug("Checking status for: " + handle);
if (si != null) {
lastStatus = si.getActionStatus(handle);
} else {
lastStatus = origStatus;
}
if ((taskFinished != lastStatus.isFinished())
|| (lastPercentage != lastStatus.percentFinished())) {
lastPercentage = lastStatus.percentFinished();
taskFinished = lastStatus.isFinished();
fireEvent(new ActionStatusEvent(lastStatus));
}
myLogger.debug("Status for " + handle + ": "
+ lastStatus.percentFinished() + " %" + " / finished: "
+ lastStatus.isFinished());
return lastStatus;
}
synchronized public void removeListener(Listener l) {
if (listeners == null) {
listeners = new Vector<Listener>();
}
listeners.removeElement(l);
}
public void waitForActionToFinish(int recheckIntervalInSeconds,
boolean exitIfFailed)
throws StatusException {
waitForActionToFinish(recheckIntervalInSeconds, exitIfFailed,
-1);
}
/**
* Waits for the remote task to be finshed.
*
* @param recheckIntervalInSeconds
* how long to wait inbetween status checks
* @param exitIfFailed
* whether to return from wait if task not finished yet but
* failed already (maybe because at least one sub-task failed).
* @param threshholdInSeconds
* after how long to stop monitoring (in seconds) or -1 for never
* stop monitoring until task finished
* @return true if the task is finished, false if monitoring was interrupted
* either by thread interrupt or threshold
* @throws StatusException
* if the handle can't be found
*/
public void waitForActionToFinish(int recheckIntervalInSeconds,
boolean exitIfFailed, int threshholdInSeconds)
throws StatusException {
getStatus();
if (lastStatus == null) {
throw new StatusException("Can't find status with handle "
+ this.handle);
}
if (lastStatus.isFinished()) {
return;
}
createWaitThread(recheckIntervalInSeconds, threshholdInSeconds);
try {
finished.await();
} catch (InterruptedException e) {
myLogger.error("Waiting for status " + handle
+ " to finish interrupted.", e);
waitWasInterrupted = true;
throw new StatusException(e.getLocalizedMessage(), e);
}
return;
}
}
| [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
cb9fe5aa7f5d501e631c3327761967e7056168b4 | 9948853c238c5b36005fd94aadacc1883c6a43b2 | /data/src/main/java/com/me/data/model/exam/ExamPaperLog.java | 51a65dd16c3a53becf7a92131d90e8d0d79955e8 | [] | no_license | yanzi1/3.0test | 1556fc3e47d4ac7136173d61323735676fc81f55 | 023cca5162eeb697cf0a4bd86d1baecf6f5d31c7 | refs/heads/master | 2020-04-02T10:49:02.157340 | 2017-10-12T06:21:26 | 2017-10-12T06:21:26 | 154,356,540 | 1 | 0 | null | 2018-10-23T15:54:28 | 2018-10-23T15:54:28 | null | UTF-8 | Java | false | false | 2,503 | java | package com.me.data.model.exam;
import com.yunqing.core.db.annotations.Id;
import com.yunqing.core.db.annotations.Table;
import java.io.Serializable;
/**
* 答题记录
* wyc
*/
@Table(name="t_exampaper_log")
public class ExamPaperLog implements Serializable {
@Id
private String dbId;
private String userId; //用户Id
private String examId; //考试类型
private String subjectId; //考试科目
private String typeId; //知识点id/考点id(当为能力评估、历年真题时,可为空)
private String sectionId; //章节ID
private String classId;//班次id(如果非随堂练习,次字段位@“NULL")
private String examinationId; //试卷Id
private String content; //试卷json
public ExamPaperLog(){}
public ExamPaperLog(String userId,String examId,String subjectId,String typeId,String sectionId, String examinationId,String answers){
this.userId=userId;
this.examId=examId;
this.subjectId=subjectId;
this.typeId=typeId;
this.examinationId=examinationId;
this.content=answers;
this.sectionId=sectionId;
}
public String getDbId() {
return dbId;
}
public void setDbId(String dbId) {
this.dbId = dbId;
}
public String getSubjectId() {
return subjectId;
}
public void setSubjectId(String subjectId) {
this.subjectId = subjectId;
}
public String getExamId() {
return examId;
}
public void setExamId(String examId) {
this.examId = examId;
}
public String getTypeId() {
return typeId;
}
public void setTypeId(String typeId) {
this.typeId = typeId;
}
public String getSectionId() {
return sectionId;
}
public void setSectionId(String sectionId) {
this.sectionId = sectionId;
}
public String getClassId() {
return classId;
}
public void setClassId(String classId) {
this.classId = classId;
}
public String getExaminationId() {
return examinationId;
}
public void setExaminationId(String examinationId) {
this.examinationId = examinationId;
}
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
}
| [
"503844856@qq.com"
] | 503844856@qq.com |
14e95aa72d78e0af9201acccb8b90186c7fa103c | 8ba21207b48cb8bbd6f9f77653fc97eb8df7e384 | /src/main/java/com/hxj/websimplejava/HashMapTest.java | 2b017612d8318fe710086cb1bb6f8df623232d55 | [] | no_license | hxj1225/websimplejava | 0aa1721a0db54013825e4137a24d3a8c03a2f48e | 22975c0e1e5a7f30e2bb5b49fcb1d7e52b6082c2 | refs/heads/master | 2021-06-01T11:43:47.408878 | 2018-12-04T12:11:01 | 2018-12-04T12:11:01 | 9,145,335 | 0 | 0 | null | null | null | null | ISO-8859-15 | Java | false | false | 1,460 | java | package com.hxj.websimplejava;
import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
/**
*/
public class HashMapTest {
Map<Object, String> hashMap;
{
hashMap = new HashMap<Object, String>();
hashMap.put("a", "a");
hashMap.put("a", "aa");
hashMap.put("a", "aaa");
hashMap.put("a", "aaaa");
hashMap.put("a", "aaaaa");
hashMap.put("b", "b");
hashMap.put("b", "bb");
hashMap.put("c", "c");
// Integer.valueOf(49).hashCode() == "1".hashCode() ·µ»Øtrue
hashMap.put(Integer.valueOf(49), "Integer.valueOf(49)");
hashMap.put("1", "1");
}
public static void test(String id) {
if (!id.equals("1")) {
throw new IllegalArgumentException("aaaa");
}
}
public static void main(String[] args) {
try {
HashMapTest.test("2");
} catch (Exception e) {
e.printStackTrace();
}
HashMapTest hashMapTest = new HashMapTest();
Map<Object, String> map = hashMapTest.hashMap;
for (Entry<Object, String> e : map.entrySet()) {
System.out.println(e.getValue());
}
System.out.println(Integer.valueOf(49).hashCode() == "1".hashCode());
System.out.println(0.1 * 0.2);
System.out.println(-1 >>> 2);
System.out.println(-1 >> 2);
}
}
| [
"hxj1225@163.com"
] | hxj1225@163.com |
5bd06f65dde6c7596c7aaebb3be614b0d99e95d3 | bb6297ef9d06345c85885b26b85a83a2eecaee83 | /uoo-business/business-personnel/src/main/java/cn/ffcs/uoo/core/personnel/controller/TbPsnjobController.java | d2ffe592eeae4fca4021f8416b685358438bd91a | [] | no_license | porscheYong/uoo | da5f8c0abf3fc8868db4445a4a0376da8d5890de | 7007f7004bc795e5502d6d5fd127c11e4fe0d76b | refs/heads/master | 2020-05-24T22:26:58.750191 | 2019-03-12T09:11:32 | 2019-03-12T09:11:32 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,880 | java | package cn.ffcs.uoo.core.personnel.controller;
import cn.ffcs.uoo.base.common.annotion.UooLog;
import cn.ffcs.uoo.core.personnel.annotion.SendMqMsg;
import cn.ffcs.uoo.core.personnel.entity.TbPsnjob;
import cn.ffcs.uoo.core.personnel.service.TbPsnjobService;
import cn.ffcs.uoo.core.personnel.util.ResultUtils;
import io.swagger.annotations.ApiImplicitParam;
import io.swagger.annotations.ApiImplicitParams;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import cn.ffcs.uoo.base.controller.BaseController;
/**
* <p>
* 前端控制器
* </p>
*
* @author wudj
* @since 2018-10-11
*/
@RestController
@RequestMapping("/tbPsnjob")
public class TbPsnjobController extends BaseController {
@Autowired
private TbPsnjobService tbPsnjobService;
@ApiOperation(value="新增工作履历",notes="新增工作履历")
@ApiImplicitParam(name = "tbPsnjob",value = "工作履历",required = true,dataType = "TbPsnjob")
@UooLog(value = "新增工作履历",key = "saveTbPsnjob")
@SendMqMsg(type = "person", handle ="update", column ="personnelId")
@RequestMapping(value="/saveTbPsnjob",method = RequestMethod.POST)
public Object saveTbPsnjob(@RequestBody TbPsnjob tbPsnjob){
return tbPsnjobService.saveTbPsnjob(tbPsnjob);
}
@ApiOperation(value="更新工作履历",notes="更新工作履历")
@ApiImplicitParam(name = "tbPsnjob",value = "工作履历",required = true,dataType = "TbPsnjob")
@UooLog(value = "更新工作履历",key = "updateTbPsnjob")
@SendMqMsg(type = "person", handle ="update", column ="personnelId")
@RequestMapping(value="/updateTbPsnjob",method = RequestMethod.PUT)
public Object updateTbPsnjob(@RequestBody TbPsnjob tbPsnjob){
return tbPsnjobService.updateTbPsnjob(tbPsnjob);
}
@ApiOperation(value="删除工作履历",notes="删除工作履历")
@ApiImplicitParams({
@ApiImplicitParam(name = "psnjobId", value = "工作履历标识", required = true, dataType = "Long",paramType="path"),
@ApiImplicitParam(name = "userId", value = "操作人标识", required = true, dataType = "Long",paramType="path")
})
@UooLog(value = "删除工作履历",key = "delTbPsnjob")
@SendMqMsg(type = "person", handle ="update", column ="personnelId")
@RequestMapping(value="/delTbPsnjob",method = RequestMethod.DELETE)
public Object delTbPsnjob(Long psnjobId, Long userId ){
return tbPsnjobService.delTbPsnjob(psnjobId, userId);
}
@ApiOperation(value="工作履历查看",notes="工作履历")
@ApiImplicitParam(name = "psnjobId", value = "工作履历标识", required = true, dataType = "Long",paramType="path")
@UooLog(value = "工作履历查看",key = "getTbPsnjob")
@RequestMapping(value="/getTbPsnjob",method = RequestMethod.GET)
public Object getTbPsnjob(Long psnjobId){
return tbPsnjobService.getTbPsnjobById(psnjobId);
}
@ApiOperation(value="工作履历分页查询",notes="工作履历分页查询")
@ApiImplicitParams({
@ApiImplicitParam(name = "personnelId", value = "人员标识", required = true, dataType = "Long",paramType="path"),
@ApiImplicitParam(name = "pageNo", value = "当前页数", required = true, dataType = "Integer",paramType="path"),
@ApiImplicitParam(name = "pageSize", value = "每页数量", required = true, dataType = "Integer",paramType="path"),
})
@UooLog(value = "工作履历查看",key = "getTbPsnjobPage")
@RequestMapping(value="/getTbPsnjobPage",method = RequestMethod.GET)
public Object getTbPsnjobPage( Long personnelId, Integer pageNo, Integer pageSize){
return ResultUtils.success(tbPsnjobService.getPsnjobPageBypsnId(personnelId, pageNo, pageSize));
}
}
| [
"woodj41@163.com"
] | woodj41@163.com |
7590d1c58ee34fcb0589763a106eb3e8144cc13c | 3045cce25d7c90c795889fca4c92c594e8d0a6ca | /Estrutura_de_Dados_Lista_01_Pilha/src/Dicas/Pilha.java | 607eac36d7f267fdb4947edee15cad18ba124e9b | [] | no_license | Mauricio-Jr-LP/Estrutura-de-dados-com-Java | 153cbb359501674b68e885fe7355249a2409c2c2 | 0bb7d7a9e513de6ec571febf97faa1956f0e0c8b | refs/heads/main | 2023-03-17T14:56:35.034646 | 2021-03-10T01:18:41 | 2021-03-10T01:18:41 | 346,191,624 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,669 | java | //Montando Pilha
package Dicas;
/**
*
* @author Mauricio
*/
public class Pilha<T>
{
int topo; //Atributo para armazenar o indice do topo da pilha
private T[] arrayPilha; //Array da pilha
public Pilha(int max) //Construtor da pilha //Max = tamanho da pilha
{
arrayPilha =(T[]) new Object[max];
//instanciando um vetor genérico (cria um vetor do tipo Objetc e faz o
//cast (conversão) para o tipo T
topo = -1;
}
public boolean inserir(T elemento) //Insere um elemento
{
if(!this.estaCheia()) //Insere um elemento se a pilha não estiver cheia
{
topo++;
arrayPilha[topo] = elemento; //Elemento a ser inserido na pilha
return true; //return true retorna se a operação foi bem sucedida
}
return false;
}
public T remover()
{
if(!estaVazia()) //Remove um elemento da pilha, se ela não esiver vazia
{
T elemento = arrayPilha[topo];
topo = -1;
return elemento; //Retorna o elemento se a operação foi bem sucedida
}
return null;
}
public boolean estaVazia() //Verifica se a pilha está vazia
{
if(topo == -1)
return true; //return retorna true se a pilha estiver vazia
return false;
}
public boolean estaCheia() //Verifica se a pilha está cheia
{
if(topo == arrayPilha.length - 1)
return true;
return false;
}
}
| [
"noreply@github.com"
] | noreply@github.com |
249499d3978503e6eb22caef5abe812c4b34c220 | 002f2cf9050f008b6f6c74a0ac7aa1e7454d3b30 | /src/main/java/com/gupao/gpmall/SsoApplication.java | b5f9a5b2abf6ad603d8611cc52640aa1f5bc7354 | [] | no_license | handsome-soon/sso | 328bb39a82af3f258e86594bc0e89052508dece5 | d58613da1f18be7bd5e7fdb7bee21e803d087bae | refs/heads/master | 2020-03-22T03:05:36.192457 | 2018-07-05T07:13:49 | 2018-07-05T07:13:49 | 139,412,991 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 302 | java | package com.gupao.gpmall;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class SsoApplication {
public static void main(String[] args) {
SpringApplication.run(SsoApplication.class, args);
}
}
| [
"15995278818@163.com"
] | 15995278818@163.com |
763deaac58807daa78eed9224ffe891c72b4ca82 | 9b4e47b8704363d7736a237c1fc178f590a3e862 | /ondex-opt/modules-opt/sbml/src/main/java/net/sourceforge/ondex/parser/sbml/Parser.java | 8722090696ce67949bcc73d2b701ea6e73d8afaf | [] | no_license | Rothamsted/ondex-opt | 0d346d7e7664c27226d7ca656135f5f49a2ba4ab | 9cb8570499b24bd60d529164cd2b9ebbc9e99e1b | refs/heads/master | 2022-01-31T04:30:03.160969 | 2022-01-10T17:35:19 | 2022-01-10T17:35:19 | 82,045,455 | 0 | 0 | null | 2021-09-01T18:45:16 | 2017-02-15T09:51:59 | Java | UTF-8 | Java | false | false | 3,754 | java | package net.sourceforge.ondex.parser.sbml;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.util.HashMap;
import java.util.Map;
import javax.xml.bind.JAXBException;
import javax.xml.stream.XMLStreamException;
import org.codehaus.stax2.XMLInputFactory2;
import org.codehaus.stax2.XMLStreamReader2;
import net.sourceforge.ondex.args.ArgumentDefinition;
import net.sourceforge.ondex.args.FileArgumentDefinition;
import net.sourceforge.ondex.core.ONDEXConcept;
import net.sourceforge.ondex.exception.type.PluginConfigurationException;
import net.sourceforge.ondex.export.sbml.Export;
import net.sourceforge.ondex.parser.ONDEXParser;
import net.sourceforge.ondex.parser.oxl.XmlParser;
/**
* @author hindlem
* @modified_by lysenkoa
* <p/>
* Parses files in the SBML format
* <p/>
* Concerning MetaData there are three layers \t First the Parser
* checks the translation table \t Then it checks the MetaData \t
* If no valid MetaData is found on a object then a missing
* metadata warning is logged and a new meta data item created
* <p/>
* MetaData translation tables are specified in the
* ONDEXParameters.xml and should be in tab deliminated form
*/
public class Parser extends ONDEXParser implements MetaData {
private XMLInputFactory2 xmlif;
public String getName() {
return "SBML Parser";
}
public String getVersion() {
return "22/11/2010";
}
@Override
public String getId() {
return "sbml";
}
public ArgumentDefinition<?>[] getArgumentDefinitions() {
return new ArgumentDefinition<?>[] { new FileArgumentDefinition(
FileArgumentDefinition.INPUT_FILE, "SBML file to import", true,
true, false, false) };
}
public void start() throws JAXBException, XMLStreamException,
PluginConfigurationException, ClassNotFoundException,
InstantiationException, IllegalAccessException {
// configure XML parser
System.setProperty( "ondex.javax.xml.stream.XMLInputFactory", "com.ctc.wstx.stax.WstxInputFactory" );
xmlif = (XMLInputFactory2) XMLInputFactory2.newFactory (
"ondex.javax.xml.stream.XMLInputFactory", this.getClass ().getClassLoader ()
);
xmlif.configureForXmlConformance();
// define meta data TODO: have this as argument to parser
graph.getMetaData().createDataSource(CV_SBML, "SBML",
"Imported from SBML file");
graph.getMetaData().getFactory()
.createEvidenceType(ET_SBML, "Imported from SBML model");
// mapping of SBML id to Ondex concept
Map<String, ONDEXConcept> nodeIDToConcept = new HashMap<String, ONDEXConcept>();
XmlParser parser = new XmlParser();
// parsing of compartments
parser.registerParser(Export.COMPARTMENT, new CompartmentParser(graph,
nodeIDToConcept));
// parsing of species
parser.registerParser(Export.SPECIES, new SpeciesParser(graph,
nodeIDToConcept));
// parsing of reactions
parser.registerParser(Export.REACTION, new ReactionParser(graph,
nodeIDToConcept));
parser.parse(getXMLStreamReader()); // 2nd pass for reactions
}
private XMLStreamReader2 getXMLStreamReader()
throws PluginConfigurationException, XMLStreamException {
try {
File file = new File(
(String) args
.getUniqueValue(FileArgumentDefinition.INPUT_FILE));
return (XMLStreamReader2) xmlif
.createXMLStreamReader(new FileReader(file));
} catch (FileNotFoundException e) {
throw new PluginConfigurationException(e);
}
}
@Override
public String[] requiresValidators() {
return new String[0];
}
} | [
"marco.brandizi@gmail.com"
] | marco.brandizi@gmail.com |
3723f7762474c57d74820d93850ae465b12fc041 | 8015514d00bbefdfd1bb27b0263892db47c18f38 | /app/src/main/java/com/example/user/barcodereader/MainActivity.java | aabb9dd83a1c0f31091abdffc1c50347affcf497 | [] | no_license | slavahokage/Code-Reader | 713c69c659c80783b7fec8db14bbce24ee625c66 | 298a1979d8df74c0fdc75a64827118dfe3d6a5f5 | refs/heads/master | 2020-03-21T11:47:45.494089 | 2018-06-24T23:14:47 | 2018-06-24T23:14:47 | 138,519,975 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,926 | java | package com.example.user.barcodereader;
import android.app.Fragment;
import android.app.FragmentTransaction;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import com.vk.sdk.util.VKUtil;
import java.util.Arrays;
public class MainActivity extends AppCompatActivity {
Fragment frag1;
Fragment frag2;
FragmentTransaction fragmentTransaction;
Button barcodeBtn;
Button QRBtn;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//String[] fingerprints = VKUtil.getCertificateFingerprint(this, this.getPackageName());
//System.out.println(Arrays.asList(fingerprints));
barcodeBtn = (Button) findViewById(R.id.barcodeBtn);
QRBtn = (Button) findViewById(R.id.QrBtn);
frag1 = new Fragment1();
frag2 = new Fragment2();
fragmentTransaction = getFragmentManager().beginTransaction();
fragmentTransaction.add(R.id.frgmCont, frag1);
fragmentTransaction.commit();
addListenerOnButton();
}
public void addListenerOnButton() {
QRBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
fragmentTransaction = getFragmentManager().beginTransaction();
fragmentTransaction.replace(R.id.frgmCont, frag2);
fragmentTransaction.commit();
}
});
barcodeBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
fragmentTransaction = getFragmentManager().beginTransaction();
fragmentTransaction.replace(R.id.frgmCont, frag1);
fragmentTransaction.commit();
}
});
}
}
| [
"slava123smirnov@gmail.com"
] | slava123smirnov@gmail.com |
07a8cb74e7b3dcd7dd7b66297daa44d0baf82177 | db5890d97cbe30aba6316be058088c5e87da1ef2 | /src/bianyiqi/Listen.java | f4d9e76a00c2b5018d6aede736d8d8f85a392d84 | [] | no_license | ZhangTh2/MINIC | e8b409cfe221a97c3d48a60dd31b5914544c2496 | da04833af0267b27fc00b66b9b19368dabeddaa2 | refs/heads/master | 2021-01-20T15:10:08.870601 | 2017-05-15T07:21:03 | 2017-05-15T07:21:03 | 90,727,851 | 2 | 1 | null | null | null | null | GB18030 | Java | false | false | 1,335 | java | package bianyiqi;
//对按钮添加的监听事件
import java.awt.event.*;
import java.io.*;
import javax.swing.*;
import java.util.*;
public class Listen implements ActionListener{
JTextArea text1;
JTextArea text2;
public void getText(JTextArea text)
{
text1 = text;
}
public void setText(JTextArea text)
{
text2 = text;
}
public void actionPerformed(ActionEvent e)
{
//文本框中内容读入到文件
//try{
//File f = new File("D:/bianyi1/程序.txt");
//FileWriter fw = new FileWriter(f);
//fw.write(text1.getText());
//fw.close();
//}
// catch(Exception e1){
// text2.append("文件写入错误");
// }
//建立词法 记号链表
cffxq.line = 0;
LinkedList<Token> cfjh = new LinkedList<Token>();
Window.chengxu = String.valueOf(text1.getText());
cffxq cffxq1 = new cffxq(cfjh,text1.getText());
//词法记号输出一下
//text2.append(cffxq1.printcfjh(cfjh));
yfzdfy parser = new yfzdfy(cfjh);
text2.setText("");
parser.analyze();
//if(parser.flag==0){
text2.append("运行成功"+'\n');
if(parser.iswrite==1)
text2.append(parser.res);
window2 win2 = new window2();
parser.fy();
win2.cfa.append(cffxq1.printcfjh(cfjh));
win2.ina.append(parser.ir.show());
win2.hba.append(parser.code);
// }
// else{
// text2.append("存在错误"+'\n');
// text2.append(parser.s);
// }
}
}
| [
"1374039989@qq.com"
] | 1374039989@qq.com |
8b7c106188f064f2cb4be5126ba02ebefd9d4652 | 5f2e63dde3dc8066ccb34989b0a8c99e398ca277 | /app/src/main/java/tscanner/msquared/hr/travelscanner/models/TravelerDataValues.java | 760f16da1ab45c8b519be213bed1bd1ba9fb77ea | [] | no_license | MatejVukosav/appsScanner | 0c19527d42fae4928b5851d453ba66596f5fcda6 | 426e405e0d467ac9485b1fadadb798a3dc70cf87 | refs/heads/master | 2021-01-15T20:13:57.331044 | 2015-06-05T15:10:20 | 2015-06-05T15:10:20 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,962 | java | package tscanner.msquared.hr.travelscanner.models;
import java.security.spec.ECField;
/**
* Created by Mihael on 31.5.2015..
*/
public class TravelerDataValues {
private String name;
private String surname;
private String dateOfBirth;
private String idNumber;
public TravelerDataValues(String dateOfBirth, String idNumber, String name, String surname) {
this.dateOfBirth = dateOfBirth;
this.idNumber = idNumber;
if(surname == null){
String[] nameData = name.split("\\s+");
if(nameData.length == 2){
this.name = nameData[0];
this.surname = nameData[1];
}
}
else{
this.name = name;
this.surname = surname;
}
}
public String getDateOfBirth() {
return dateOfBirth;
}
public String getIdNumber() {
return idNumber;
}
public String getName() {
return name;
}
public String getSurname() {
return surname;
}
public int getAge(){
if(this.dateOfBirth != null){
try{
String[] data = this.dateOfBirth.split("\\.");
int birthYear = Integer.parseInt(data[2]);
return 2015 - birthYear;
}
catch (Exception e){
return 20;
}
}
return 20;
}
public static String parseInputDate(String inDate){
if(inDate == null || inDate.length() != 6){
return "Undefined";
}
String year = inDate.substring(0, 2);
String month = inDate.substring(2, 4);
String day = inDate.substring(4,6);
try{
int intYear = Integer.parseInt(year);
String yearPrefix = (intYear < 15) ? "20" : "19";
year = yearPrefix + year;
}
catch (Exception e){
}
return day + "." + month + "." + year;
}
}
| [
"mihael.francekovic@fer.hr"
] | mihael.francekovic@fer.hr |
574e7a5ca4f7d10d4a7f548d7a4a635dc42d52fd | 59a82dcdbab50111b104cbb84a46402099600a0b | /Integrated_HackatonCode/src/test/java/com/opencart/tests/MainTest.java | e202ffe383d39e11deb83336cdee7ec23e57ca61 | [] | no_license | TamilSelvan25/Integrated_Code_Team_G | 6dd5b4816feee17087728f51584ec65382af379e | b3e197db53152e739ac21677c70e877d5c0b1c6c | refs/heads/master | 2023-04-24T05:22:28.329239 | 2021-04-27T09:07:22 | 2021-04-27T09:07:22 | 361,351,363 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,441 | java | package com.opencart.tests;
import java.io.IOException;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeTest;
import org.testng.annotations.Test;
import com.opencart.pages.E2ETestPage;
import com.opencart.utils.BaseClass;
import com.relevantcodes.extentreports.ExtentReports;
import com.relevantcodes.extentreports.ExtentTest;
public class MainTest extends BaseClass {
static ExtentTest test;
static ExtentReports report;
public String path = "\\Users\\Bhavani\\eclipse-workspace\\Demo\\screenshot";
public MainTest() throws IOException {
super();
}
@BeforeTest
public void startTest() {
report = new ExtentReports(System.getProperty("user.dir") + "\\ExtentReportResults.html");
test = report.startTest("MainTest");
}
@Test(priority = 0, groups = { "group1", "group2" })
public void setup() throws Exception {
launchBrowser();
driver.get(prop.getProperty("url"));
}
@Test(priority = 1, groups = { "group1", "group2" })
public void userLogin() throws Exception {
E2ETestPage login = new E2ETestPage(driver);
login.getDropdown().click();
login.getLogin().click();
login.getEmailname().sendKeys(prop.getProperty("Emailname"));
login.getPassword().sendKeys(prop.getProperty("Password"));
login.getLoginClick().click();
}
@AfterClass
public void endTest() {
report.endTest(test);
report.flush();
}
}
| [
"tamiltnjys3@gmail.com"
] | tamiltnjys3@gmail.com |
41744fbbfc8cd79cbfa148ca9f3035f6a59f8ab8 | 165fe9db1897e85a19bf33e12aa3c800158431a8 | /src/main/java/com/google/api/codegen/viewmodel/FileHeaderView.java | dd61d18c734721d4dc5c43bc2f39969435619fc5 | [
"Apache-2.0"
] | permissive | jcanizales/toolkit | eb4f1326c78636edc816b6090d8d066af6f8c131 | 22e9c8c93a184e758d1177616b45e460faa233f8 | refs/heads/master | 2021-01-12T12:45:35.512113 | 2017-02-02T19:38:38 | 2017-02-02T19:38:38 | 69,293,051 | 0 | 0 | null | 2016-10-01T19:13:24 | 2016-09-26T21:09:58 | Java | UTF-8 | Java | false | false | 2,032 | java | /* Copyright 2016 Google Inc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.api.codegen.viewmodel;
import com.google.auto.value.AutoValue;
import com.google.common.collect.ImmutableList;
import java.util.List;
import javax.annotation.Nullable;
@AutoValue
public abstract class FileHeaderView {
public abstract ImmutableList<String> copyrightLines();
public abstract ImmutableList<String> licenseLines();
public abstract String packageName();
public abstract String examplePackageName();
public abstract String localPackageName();
@Nullable
public abstract String version();
public boolean hasVersion() {
return version() != null && version().length() > 0;
}
public abstract String localExamplePackageName();
public abstract List<ImportTypeView> imports();
public static Builder newBuilder() {
return new AutoValue_FileHeaderView.Builder();
}
@AutoValue.Builder
public abstract static class Builder {
public abstract Builder copyrightLines(ImmutableList<String> val);
public abstract Builder licenseLines(ImmutableList<String> val);
public abstract Builder packageName(String val);
public abstract Builder examplePackageName(String val);
public abstract Builder localPackageName(String val);
public abstract Builder version(String val);
public abstract Builder localExamplePackageName(String val);
public abstract Builder imports(List<ImportTypeView> val);
public abstract FileHeaderView build();
}
}
| [
"noreply@github.com"
] | noreply@github.com |
e60216258e0ce5c0756a9c97ebf935cc7d521212 | b5535aa8b65a84271af73e6546eab5d0674d22fb | /app/src/main/java/com/fund/flio/data/enums/AcousticType.java | c3aacbafed3a4a23a6106529b19588a67d2a482a | [] | no_license | slee8789/FLIO | 3aa44ba3e7a495a341d83fc82c2a28a3f39c7f81 | 18d4b86d0092a0431d9ec61c000ef43cd29349e7 | refs/heads/master | 2023-02-11T05:55:31.443552 | 2021-01-12T03:30:33 | 2021-01-12T03:30:33 | 282,124,499 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 109 | java | package com.fund.flio.data.enums;
public enum AcousticType {
ENTIRE, MIXER, EFFECTOR, DAC, WORD_CLOCK
}
| [
"slee8789@naver.com"
] | slee8789@naver.com |
21414b6b8b5b2babd7c58c82c2ff070949647c63 | 609ae5e3a99649c8c8c45ad8eff04251e8403e25 | /PadCalc/src/data/skill/LockOrb.java | f7204cec2141093186145748d56b1dec62458ea7 | [] | no_license | candyninja001/PadCalc | 4b4b99726dc1fc322d23f9d3d1bad956f08e5229 | 4c575e5c0e758b8d02039edea3f27740ec84c962 | refs/heads/master | 2021-06-21T02:15:52.706936 | 2017-08-11T23:32:28 | 2017-08-11T23:32:28 | 100,076,709 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 47 | java | package data.skill;
public class LockOrb {
}
| [
"candyninja001@gmail.com"
] | candyninja001@gmail.com |
a0db82962750e7afe782b6a28a0f618481646541 | f6ff3e9b0d7576d54069c6cd6681b6630e7c966f | /app/src/main/java/com/China/ChinaCity/Line/LineSearch.java | 7f5e841eaa5251916babc9b78ba045b13b850bfd | [] | no_license | xiez22/ChinaCity | 072dc0b7c992380801627e1abefe72713045c85a | 3d6f185e834f48a16d32bb67873752b974b23927 | refs/heads/master | 2022-12-07T00:05:34.856120 | 2018-07-24T02:27:28 | 2018-07-24T02:27:28 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 12,321 | java | package com.China.ChinaCity.Line;
import java.math.*;
import net.sf.json.*;
import com.China.ChinaCity.Tool.*;
public class LineSearch
{
//整形初始化
public void init(int[] shuzu, int num, int value)
{
for (int i = 0; i < num; i++)
shuzu[i] = value;
}
//浮点型初始化
public void initd(double[] shuzu, int num, double value)
{
for (int i = 0; i < num; i++)
shuzu[i] = value;
}
public String[][] destination=new String[100][2];//线路,方向,站名
//有向图车站列表
public newstation[] nslist=new newstation[200];
// 车站列表
public station[] slist=new station[100];
// 路线大集合
public passenger[] ans=new passenger[10];
public int create_sta(station[] slist, double sx, double sy, String name)
{
int n = slist[0].num + 1;
slist[n].num = n;
slist[n].sx = sx;
slist[n].sy = sy;
slist[n].name = name;
slist[0].num = n;
return n;
}
// 线路大集合
public int[][] line=new int[100][100];
//有向图:S集与U集
public int[] sji=new int[200];
public int[] uji=new int[200];
//------------------------------
//算法寻找路线
public int dsearch(passenger[] ans, int start, int end)
{
//是否抵达
if (start == end)
{
//写入数据
//倒序数组
int[] temp=new int[200];
temp[0] = 1;
temp[1] = end;
for (;;)
{
//加入数组
int ci=++temp[0];
temp[ci] = nslist[temp[ci - 1]].shortcur;
if (nslist[temp[ci]].shortcur == 0)
break;
}
//写入ans集合
ans[1].st[0] = nslist[temp[temp[0]]].origin;
ans[1].wl[0] = 0;
ans[1].time = nslist[end].time + 20.0;
for (int i=temp[0] - 1;i > 0;i--)
{
//判断是否改变了车站
if (nslist[temp[i]].origin != nslist[temp[i + 1]].origin)
{
//将该车站写入
ans[1].st[++ans[1].wl[0]] = nslist[temp[i]].origin;
ans[1].wl[ans[1].wl[0]] = nslist[temp[i]].line;
//判断隧道信息
for (int m=1;m <= nslist[temp[i + 1]].tunnelsta[0];m++)
{
if (nslist[temp[i + 1]].tunnelsta[m] == temp[i])
{
ans[1].ds[ans[1].wl[0]] = nslist[temp[i + 1]].tunnelline[m];
break;
}
}
}
}
return 0;
}
sji[++sji[0]] = start;
uji[start] = 0;
//修改里程
for (int i=1;i <= nslist[start].tunnelsta[0];i++)
{
double deltat=nslist[start].tunneltime[i];
if (deltat + nslist[start].time < nslist[nslist[start].tunnelsta[i]].time)
{
//修改里程
nslist[nslist[start].tunnelsta[i]].time = deltat + nslist[start].time;//修改父节点
nslist[nslist[start].tunnelsta[i]].shortcur = start;
}
}
int smallpoint=0;
//寻找最小U值
for (int i=1;i <= uji[0];i++)
{
if ((smallpoint == 0 || nslist[i].time < nslist[smallpoint].time) && uji[i] != 0)
{
int q=uji[0];
smallpoint = i;
}
}
//递归
dsearch(ans, smallpoint, end);
return 0;
}
public void dsearchnew(passenger[] ans, int start, int end)
{
for (int i=0;i <= slist[0].num;i++)
{
init(slist[i].newsta, 20, 0);
}
for (int i=0;i < 200;i++)
{
nslist[i].num = 0;
nslist[i].time = 99999.0;
nslist[i].line = 0;
nslist[i].shortcur = 0;
nslist[i].origin = 0;
init(nslist[i].tunnelsta, 20, 0);
init(nslist[i].tunnelline, 20, 0);
initd(nslist[i].tunneltime, 20, 0.0);
}
for (int i=0;i < 10;i++)
{
ans[i].num = 0;
ans[i].time = 0.0;
init(ans[i].wl, 20, 0);
init(ans[i].st, 20, 0);
init(ans[i].ds, 20, 0);
}
//先列举
for (int i=1;i <= line[0][0];i++)
{
for (int j=1;j <= line[i][0];j++)
{
int num=++nslist[0].num;
nslist[num].num = num;
nslist[num].origin = line[i][j];
nslist[num].line = i;
slist[line[i][j]].newsta[++slist[line[i][j]].newsta[0]] = num;
if (j > 1)
{
nslist[num].tunnelsta[++nslist[num].tunnelsta[0]] = num - 1;
nslist[num].tunnelline[nslist[num].tunnelsta[0]] = 0;
int m=line[i][j];
double d= Math.sqrt(Math.pow(slist[line[i][j - 1]].sx - slist[line[i][j]].sx, 2.0) + Math.pow(slist[line[i][j - 1]].sy - slist[line[i][j]].sy, 2.0));
nslist[num].tunneltime[nslist[num].tunnelsta[0]] = d / 8.0 + 5.0;
}
if (j < line[i][0])
{
nslist[num].tunnelsta[++nslist[num].tunnelsta[0]] = num + 1;
nslist[num].tunnelline[nslist[num].tunnelsta[0]] = 1;
int m=line[i][j];
double d= Math.sqrt(Math.pow(slist[line[i][j + 1]].sx - slist[line[i][j]].sx, 2.0) + Math.pow(slist[line[i][j + 1]].sy - slist[line[i][j]].sy, 2.0));
nslist[num].tunneltime[nslist[num].tunnelsta[0]] = d / 8.0 + 5.0;
}
}
}
//建立换乘通道
for (int i=1;i <= nslist[0].num;i++)
{
for (int j=1;j <= slist[nslist[i].origin].newsta[0];j++)
{
if (slist[nslist[i].origin].newsta[j] != i)
{
nslist[i].tunnelsta[++nslist[i].tunnelsta[0]] = slist[nslist[i].origin].newsta[j];
nslist[i].tunneltime[nslist[i].tunnelsta[0]] = 15.0;
nslist[i].tunnelline[nslist[i].tunnelsta[0]] = -1;
//特殊情况
if (start == nslist[i].origin || end == nslist[i].origin)
{
nslist[i].tunneltime[nslist[i].tunnelsta[0]] = 0.0;
}
}
}
}
//初始化集合
init(sji, 200, 0);
for (int i=0;i < 200;i++)
{
uji[i] = i;
}
uji[0] = 199;
//初始化起点站时间
nslist[slist[start].newsta[1]].time = 0.0;
//调用函数
dsearch(ans, slist[start].newsta[1], slist[end].newsta[1]);
}
//Find Station
public int FindStation(String sta)
{
for (int i=1;i <= slist[0].num;i++)
{
if (slist[i].name.equals(sta))
return i;
}
return 0;
}
//-------------------------------
public void Search(int startn, int endn)
{
dsearchnew(ans, startn, endn);
dsearchnew(ans, startn, endn);
}
public LineSearch()
{
//init
for (int i=0;i < 200;i++)
nslist[i] = new newstation();
for (int i=0;i < 10;i++)
ans[i] = new passenger();
for (int i=0;i < 100;i++)
slist[i] = new station();
}
// 初始化车站
/*slist[0].num = 0;
ans[0].wl[0]=0;
ans[0].st[0]=0;*/
// 线路与车站
//车站
public int initlog(JSONObject myjson,int mode)
{
if (mode == 0)
{
try
{
//Stations
JSONArray jsStation=myjson.getJSONArray("Station");
for (int i=0;i < jsStation.size();i++)
{
JSONObject jsTemp=jsStation.getJSONObject(i);
create_sta(slist, Double.parseDouble(jsTemp.getString("pointx")), Double.parseDouble(jsTemp.getString("pointy")), jsTemp.getString("name"));
}
//Lines
JSONArray jsLine=myjson.getJSONArray("Line");
for (int i=0;i < jsLine.size();i++)
{
JSONObject jsTemp=jsLine.getJSONObject(i);
int lineNum=jsTemp.getInt("name");
destination[lineNum][0] = jsTemp.getString("destination0");
destination[lineNum][1] = jsTemp.getString("destination1");
JSONArray jsArrayTemp=jsTemp.getJSONArray("station");
for (int j=0;j < jsArrayTemp.size();j++)
{
line[lineNum][j] = jsArrayTemp.get(j);
}
//Change
if (lineNum > line[0][0])
{
line[0][0] = lineNum;
}
}
//生成车站表格
for (int s=1;s <= slist[0].num;s++)
{
for (int i=1;i <= line[0][0];i++)
{
for (int j=1;j <= line[i][0];j++)
{
if (line[i][j] == s)
{
int n=slist[s].sl[0] + 1;
slist[s].sl[n] = i;
slist[s].ss[n] = j;
slist[s].sl[0] = n;
}
}
}
}
return 0;
}
catch (Exception e)
{
e.printStackTrace();
return 1;
}
}
return 1;
}
/*
public void initlog()
{
create_sta(slist, -480.0, 899.0, "天安门");
create_sta(slist, -571.0, 1020.0, "半岛");
create_sta(slist, -639.0, 1117.0, "人民广场");
create_sta(slist, -496.0, 1245.0, "大石山脚");
create_sta(slist, -330.0, 1245.0, "新区");
create_sta(slist, -187.0, 1097.0, "森林公园");
create_sta(slist, -16.0, 567.0, "迷雾山");
create_sta(slist, 130.0, 433.0, "购物中心");
create_sta(slist, 17.0, 136.0, "沙湾");
create_sta(slist, 17.0, 31.0, "地铁岛");//10
create_sta(slist, -158.0, 17.0, "机场");
create_sta(slist, -264.0, 63.0, "T2航站楼");
create_sta(slist, -62.0, 6.0, "好望角");
create_sta(slist, -650.0, 937.0, "商贸中心");
create_sta(slist, -668.0, 787.0, "芳园");
create_sta(slist, -464.0, 583.0, "海湾");
create_sta(slist, -378.0, 923.0, "西口");
create_sta(slist, -539.0, 891.0, "天安门东");
create_sta(slist, -750.0, 931.0, "艺林");
create_sta(slist, -736.0, 1023.0, "和平路");//20
create_sta(slist, -476.0, 1072.0, "国贸");
create_sta(slist, -375.0, 1312.0, "大石山顶");
create_sta(slist, -526.0, 785.0, "银桥");
create_sta(slist, -860.0, 1187.0, "镜湖");
create_sta(slist, -1094.0, 1245.0, "镜海");
create_sta(slist, -384.0, 1429.0, "展览城");
create_sta(slist, -169.0, 1468.0, "平庄");
create_sta(slist, -25.0, 1407.0, "平庄西");
create_sta(slist, 349.0, 2144.0, "沙堡自然村");
create_sta(slist, 555.0, 1755.0, "沙堡");//30
create_sta(slist, 946.0, 1787.0, "三角洲");
create_sta(slist, 1261.0, 1815.0, "旅游中心");
create_sta(slist, 1292.0, 1999.0, "沙城");
create_sta(slist, 1426.0, 1999.0, "沙城区政府");
create_sta(slist, 1482.0, 1935.0, "沙城半岛");
create_sta(slist, -105.0, 118.0, "沼泽地");
create_sta(slist, -183.0, 559.0, "微软");
create_sta(slist, -203.0, 1330.0, "蝶湖");
create_sta(slist, 1123.0, 1787.0, "海关");//39
//线路
destination[1][0] = "好望角";
destination[1][1] = "新区";
destination[2][0] = "地铁岛";
destination[2][1] = "星海";
destination[3][0] = "西口";
destination[3][1] = "大学城东";
destination[4][0] = "地铁岛";
destination[4][1] = "海湾";
destination[5][0] = "机场";
destination[5][1] = "沙湾";
destination[6][0] = "芳园";
destination[6][1] = "迷雾山";
destination[7][0] = "平庄西";
destination[7][1] = "T2航站楼";
destination[8][0] = "西口";
destination[8][1] = "大学城东";
destination[9][0] = "海湾";
destination[9][1] = "大石山顶";
destination[12][0] = "海湾";
destination[12][1] = "芳园";
destination[13][0] = "西口";
destination[13][1] = "沙城";
destination[16][0] = "机场";
destination[16][1] = "镜海";
line[0][0] = 16;
line[1][0] = 5;
line[1][1] = 13;
line[1][2] = 11;
line[1][3] = 37;
line[1][4] = 17;
line[1][5] = 5;
line[2][0] = 18;
line[2][1] = 10;
line[2][2] = 13;
line[2][3] = 11;
line[2][4] = 12;
line[2][5] = 15;
line[2][6] = 14;
line[2][7] = 3;
line[2][8] = 5;
line[2][9] = 38;
line[2][10] = 27;
line[2][11] = 29;
line[2][12] = 30;
line[2][13] = 31;
line[2][14] = 39;
line[2][15] = 32;
line[2][16] = 33;
line[2][17] = 34;
line[2][18] = 35;
line[3][0] = 4;
line[3][1] = 17;
line[3][2] = 1;
line[3][3] = 14;
line[3][4] = 19;
line[4][0] = 6;
line[4][1] = 10;
line[4][2] = 9;
line[4][3] = 8;
line[4][4] = 7;
line[4][5] = 37;
line[4][6] = 16;
line[5][0] = 3;
line[5][1] = 11;
line[5][2] = 36;
line[5][3] = 9;
line[6][0] = 9;
line[6][1] = 15;
line[6][2] = 23;
line[6][3] = 1;
line[6][4] = 2;
line[6][5] = 3;
line[6][6] = 4;
line[6][7] = 5;
line[6][8] = 6;
line[6][9] = 7;
line[7][0] = 8;
line[7][1] = 28;
line[7][2] = 27;
line[7][3] = 26;
line[7][4] = 5;
line[7][5] = 21;
line[7][6] = 1;
line[7][7] = 16;
line[7][8] = 12;
line[8][0] = 5;
line[8][1] = 17;
line[8][2] = 6;
line[8][3] = 21;
line[8][4] = 3;
line[8][5] = 20;
line[9][0] = 5;
line[9][1] = 16;
line[9][2] = 18;
line[9][3] = 2;
line[9][4] = 4;
line[9][5] = 22;
line[12][0] = 8;
line[12][1] = 16;
line[12][2] = 23;
line[12][3] = 17;
line[12][4] = 21;
line[12][5] = 2;
line[12][6] = 20;
line[12][7] = 19;
line[12][8] = 15;
line[13][0] = 5;
line[13][1] = 17;
line[13][2] = 5;
line[13][3] = 28;
line[13][4] = 30;
line[13][5] = 33;
line[16][0] = 4;
line[16][1] = 1;
line[16][2] = 3;
line[16][3] = 24;
line[16][4] = 25;
//生成车站表格
for (int s=1;s <= slist[0].num;s++)
{
for (int i=1;i <= line[0][0];i++)
{
for (int j=1;j <= line[i][0];j++)
{
if (line[i][j] == s)
{
int n=slist[s].sl[0] + 1;
slist[s].sl[n] = i;
slist[s].ss[n] = j;
slist[s].sl[0] = n;
}
}
}
}
}
*/
}
| [
"xiezhe20001128@163.com"
] | xiezhe20001128@163.com |
145bd8c927adbcac75d259dfa22e1bec868b9f3c | add9df242ecfe21a71d34150675a472bc65ee673 | /video27/app/src/test/java/example2/tonio/video27/ExampleUnitTest.java | 620552ec9c3f610999e62a502c578860b8c89791 | [] | no_license | pedroARV/biblioteca | 9ebda6a667db0fef691074e5789883de4b32378b | 63d02b5630b464f7c54d75cc830346dc335b26cf | refs/heads/master | 2020-04-08T16:04:12.234939 | 2018-11-28T13:17:58 | 2018-11-28T13:17:58 | 159,503,528 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 383 | java | package example2.tonio.video27;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() {
assertEquals(4, 2 + 2);
}
} | [
"tukyreyeslol@gmail.com"
] | tukyreyeslol@gmail.com |
c88564b471e75feafae10610dd0d3d6b36192732 | 26c90fa0cf157ffe2ea580012fa1371a7b9f5787 | /docs/image/java/ic_lens.java | 400b72734f2fbb7b3b2f8f27f5c9b423ec2020ff | [
"Apache-2.0"
] | permissive | ThePreviousOne/SVG-Android | a666e8b2298729d13a72530dee2f1f598dbd86f9 | 7be929196d23c547034400c7eb8ed937ba9dba4f | refs/heads/master | 2020-03-28T08:38:51.300003 | 2018-09-09T01:07:44 | 2018-09-09T05:08:15 | 147,979,009 | 0 | 0 | Apache-2.0 | 2018-09-09T00:03:26 | 2018-09-09T00:03:26 | null | UTF-8 | Java | false | false | 1,778 | java | package com.github.megatronking.svg.iconlibs;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.ColorFilter;
import android.graphics.Paint;
import com.github.megatronking.svg.support.SVGRenderer;
/**
* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* SVG-Generator. It should not be modified by hand.
*/
public class ic_lens extends SVGRenderer {
public ic_lens(Context context) {
super(context);
mAlpha = 1.0f;
mWidth = dip2px(24.0f);
mHeight = dip2px(24.0f);
}
@Override
public void render(Canvas canvas, int w, int h, ColorFilter filter) {
final float scaleX = w / 24.0f;
final float scaleY = h / 24.0f;
mPath.reset();
mRenderPath.reset();
mFinalPathMatrix.setValues(new float[]{1.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f, 1.0f});
mFinalPathMatrix.postScale(scaleX, scaleY);
mPath.moveTo(12.0f, 2.0f);
mPath.cubicTo(6.48f, 2.0f, 2.0f, 6.48f, 2.0f, 12.0f);
mPath.rCubicTo(0.0f, 5.52f, 4.48f, 10.0f, 10.0f, 10.0f);
mPath.rCubicTo(5.52f, 0.0f, 10.0f, -4.48f, 10.0f, -10.0f);
mPath.cubicTo(22.0f, 6.4799995f, 17.52f, 2.0f, 12.0f, 2.0f);
mPath.close();
mPath.moveTo(12.0f, 2.0f);
mRenderPath.addPath(mPath, mFinalPathMatrix);
if (mFillPaint == null) {
mFillPaint = new Paint();
mFillPaint.setStyle(Paint.Style.FILL);
mFillPaint.setAntiAlias(true);
}
mFillPaint.setColor(applyAlpha(-16777216, 1.0f));
mFillPaint.setColorFilter(filter);
canvas.drawPath(mRenderPath, mFillPaint);
}
} | [
"jgy08954@ly.com"
] | jgy08954@ly.com |
a5c931e938bc738de63cd78b8fe6a977d63bf98e | d4fd5ef0053ae2c3568b0183ec440f129b8c9fb9 | /src/main/java/com/sisadmin/compras/dto/ProveedorFilter.java | e3be0732fee3fd3a573d57c231bff04d3d24b973 | [] | no_license | EdwinIR/sisadmin.restapi | b5d7535d13f5c1667aee92bf07d37af5d4b09d52 | ee2f01cd9a3cadafcbe37dce7413a88af129ada9 | refs/heads/master | 2021-01-24T18:39:37.893707 | 2017-03-09T17:14:07 | 2017-03-09T17:14:07 | 84,468,186 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 220 | java | package com.sisadmin.compras.dto;
public class ProveedorFilter {
private String ciudad;
public String getCiudad() {
return ciudad;
}
public void setCiudad(String ciudad) {
this.ciudad = ciudad;
}
}
| [
"edwin.izquierdo.rojas@gmail.com"
] | edwin.izquierdo.rojas@gmail.com |
304d235151d97c672dc666d3256901284bf89313 | 625c29b997c680e09d9755fc1b5f3487e6ec164d | /spring-cloud-eureka-service/src/main/java/com/demo/eureka/service/EurekaApplication.java | 509bfd3b9391ca50c90b10b3a2dec5ecab084b32 | [] | no_license | weichanghuan/spring-cloud-practice | f02c29c5fd94d662ee2fbce7bf5eec6f1ec8d8c9 | 318a0504251b8715435e7b0164e6ef2193bd344c | refs/heads/master | 2022-11-08T18:21:08.143595 | 2020-06-21T11:05:43 | 2020-06-21T11:05:43 | 270,102,600 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 492 | java | package com.demo.eureka.service;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
/**
* @Author: wch
* @Description:
* @Date: 2020/6/6 11:52 PM
*/
@EnableEurekaServer
@SpringBootApplication
public class EurekaApplication {
public static void main(String[] args) {
SpringApplication.run(EurekaApplication.class, args);
}
}
| [
"527622102@qq.com"
] | 527622102@qq.com |
47b79189204f67530c9158652d4041e0b20e42c8 | 065c7e463e6581f97b9831f0b7df22b9baa6c507 | /src/main/java/com/tuktukconsumer/manager/HttpClientPoolManager.java | 55bc1fa45ec2d490ea60eebb4e1812e8e90c941b | [] | no_license | sangam009/tuktukconsumer | 2ad7acda3910cfd001bce55763beb19d33873797 | 5566b9273abc0a9b2554d042f7efcff284d6dfb7 | refs/heads/master | 2020-03-21T02:57:19.834159 | 2018-09-06T13:48:30 | 2018-09-06T13:48:30 | 138,030,271 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,580 | java | package com.tuktukconsumer.manager;
import java.nio.charset.CodingErrorAction;
import java.util.Arrays;
import javax.net.ssl.SSLContext;
import org.apache.http.Consts;
import org.apache.http.client.CookieStore;
import org.apache.http.client.CredentialsProvider;
import org.apache.http.client.config.AuthSchemes;
import org.apache.http.client.config.CookieSpecs;
import org.apache.http.client.config.RequestConfig;
import org.apache.http.config.ConnectionConfig;
import org.apache.http.config.MessageConstraints;
import org.apache.http.config.Registry;
import org.apache.http.config.RegistryBuilder;
import org.apache.http.config.SocketConfig;
import org.apache.http.conn.DnsResolver;
import org.apache.http.conn.HttpConnectionFactory;
import org.apache.http.conn.ManagedHttpClientConnection;
import org.apache.http.conn.routing.HttpRoute;
import org.apache.http.conn.socket.ConnectionSocketFactory;
import org.apache.http.conn.socket.PlainConnectionSocketFactory;
import org.apache.http.conn.ssl.SSLConnectionSocketFactory;
import org.apache.http.impl.client.BasicCookieStore;
import org.apache.http.impl.client.BasicCredentialsProvider;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.impl.conn.ManagedHttpClientConnectionFactory;
import org.apache.http.impl.conn.PoolingHttpClientConnectionManager;
import org.apache.http.impl.conn.SystemDefaultDnsResolver;
import org.apache.http.ssl.SSLContexts;
/**
* This example demonstrates how to customize and configure the most common
* aspects of HTTP request execution and connection management.
*/
public class HttpClientPoolManager {
private static CloseableHttpClient httpclient;
private static Boolean flag = Boolean.TRUE;
public static CloseableHttpClient getInstance() throws Exception {
if (httpclient == null) {
synchronized (flag) {
if (httpclient == null) {
httpclient = createClient();
}
}
}
return httpclient;
}
private static CloseableHttpClient createClient() throws Exception {
HttpConnectionFactory<HttpRoute, ManagedHttpClientConnection> connFactory = new ManagedHttpClientConnectionFactory();
/*
* Client HTTP connection objects when fully initialized can be bound to an
* arbitrary network socket. The process of network socket initialization, its
* connection to a remote address and binding to a local one is controlled by a
* connection socket factory.
*/
/*
* SSL context for secure connections can be created either based on system or
* application specific properties.
*/
SSLContext sslcontext = SSLContexts.createSystemDefault();
/*
* Create a registry of custom connection socket factories for supported
* protocol schemes.
*/
Registry<ConnectionSocketFactory> socketFactoryRegistry = RegistryBuilder.<ConnectionSocketFactory>create()
.register("http", PlainConnectionSocketFactory.INSTANCE)
.register("https", new SSLConnectionSocketFactory(sslcontext)).build();
// Use custom DNS resolver to override the system DNS resolution.
DnsResolver dnsResolver = new SystemDefaultDnsResolver();
// Create a connection manager with custom configuration.
PoolingHttpClientConnectionManager connManager = new PoolingHttpClientConnectionManager(socketFactoryRegistry,
connFactory, dnsResolver);
// Create socket configuration
SocketConfig socketConfig = SocketConfig.custom().setTcpNoDelay(true).build();
/*
* Configure the connection manager to use socket configuration either by
* default or for a specific host.
*/
connManager.setDefaultSocketConfig(socketConfig);
// Validate connections after 1 sec of inactivity
connManager.setValidateAfterInactivity(1000);
// Create message constraints
MessageConstraints messageConstraints = MessageConstraints.custom().setMaxHeaderCount(200)
.setMaxLineLength(2000).build();
// Create connection configuration
ConnectionConfig connectionConfig = ConnectionConfig.custom().setMalformedInputAction(CodingErrorAction.IGNORE)
.setUnmappableInputAction(CodingErrorAction.IGNORE).setCharset(Consts.UTF_8)
.setMessageConstraints(messageConstraints).build();
/*
* Configure the connection manager to use connection configuration either by
* default or for a specific host.
*/
connManager.setDefaultConnectionConfig(connectionConfig);
/*
* Configure total max or per route limits for persistent connections that can
* be kept in the pool or leased by the connection manager.
*/
connManager.setMaxTotal(200);
connManager.setDefaultMaxPerRoute(200);
// Use custom cookie store if necessary.
CookieStore cookieStore = new BasicCookieStore();
// Use custom credentials provider if necessary.
CredentialsProvider credentialsProvider = new BasicCredentialsProvider();
// Create global request configuration
RequestConfig defaultRequestConfig = RequestConfig.custom().setCookieSpec(CookieSpecs.DEFAULT)
.setConnectTimeout(15000).setSocketTimeout(15000).setExpectContinueEnabled(true)
.setTargetPreferredAuthSchemes(Arrays.asList(AuthSchemes.NTLM, AuthSchemes.DIGEST))
.setProxyPreferredAuthSchemes(Arrays.asList(AuthSchemes.BASIC)).build();
// Create an HttpClient with the given custom dependencies and
// configuration.
CloseableHttpClient httpclient = HttpClients.custom().setConnectionManager(connManager)
.setDefaultCookieStore(cookieStore).setDefaultCredentialsProvider(credentialsProvider)
.setDefaultRequestConfig(defaultRequestConfig).build();
return httpclient;
}
}
| [
"sangam.dubey@paytmmall.com"
] | sangam.dubey@paytmmall.com |
1b97f596b2406c338cf64d5b55d7578843bd3e1f | 86ccb87786458a8807fe9eff9b7200f2626c01a2 | /src/main/java/p129/Solution.java | 4de2ffa8fb1a95952ee93d3d97b3177b65fa562b | [] | no_license | fisher310/leetcoderevolver | d919e566271730b3df26fe28b85c387a3f48faa3 | 83263b69728f94b51e7188cd79fcdac1f261c339 | refs/heads/master | 2023-03-07T19:05:58.119634 | 2022-03-23T12:40:13 | 2022-03-23T12:40:13 | 251,488,466 | 0 | 0 | null | 2021-03-24T01:50:58 | 2020-03-31T03:14:04 | Java | UTF-8 | Java | false | false | 943 | java | package p129;
import util.TreeNode;
/**
* 求根到叶子节点数字之和
*/
class Solution {
int ans = 0;
public int sumNumbers(TreeNode root) {
ans = 0;
dfs(root, 0);
return ans;
}
void dfs(TreeNode node, int preNum) {
if (node == null) return;
if (node.left == null && node.right == null) {
ans += preNum * 10 + node.val;
return;
}
if (node.left != null) {
dfs(node.left, preNum * 10 + node.val);
}
if (node.right != null) {
dfs(node.right, preNum * 10 + node.val);
}
}
public static void main(String[] args) {
int ans = new Solution().sumNumbers(TreeNode.createTreeNode(new Integer[]{1, 2, 3}));
System.out.println(ans);
ans = new Solution().sumNumbers(TreeNode.createTreeNode(new Integer[]{4, 9, 0, 5, 1}));
System.out.println(ans);
}
}
| [
"lihailong699@gmail.com"
] | lihailong699@gmail.com |
6889db52c9670b4d13b211e34d27c8666e855706 | 7f75d740578aba9898f7a24c6c2ba0243e3898f4 | /hibernate-eclipse-postgresqlAnno/src/main/java/com/cms/deloitte/dao/impl/CustomerDAOImpl.java | 2e1c44271d6ef2463aecbc9052bb8e017cb4be6c | [] | no_license | zubedooo/JDBCHibernate | a884d1de5ea5191c6d847ab5cb5eb7fc89e4a34e | 45b614d9a2851e19955c4681e8efc9b14f84d83c | refs/heads/master | 2020-12-30T03:58:41.340983 | 2020-02-07T11:22:40 | 2020-02-07T11:22:40 | 238,852,373 | 0 | 0 | null | 2020-10-13T19:20:41 | 2020-02-07T05:42:28 | Java | UTF-8 | Java | false | false | 2,413 | java | package com.cms.deloitte.dao.impl;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.List;
import org.hibernate.Query;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;
import org.hibernate.cfg.AnnotationConfiguration;
import org.hibernate.cfg.Configuration;
import com.cms.deloitte.dao.CustomerDAO;
import com.cms.deloitte.model.Customer;
public class CustomerDAOImpl implements CustomerDAO{
AnnotationConfiguration configuration;
SessionFactory factory;
public CustomerDAOImpl() {
configuration = new AnnotationConfiguration().configure();
factory = configuration.buildSessionFactory();
}
@Override
public boolean addCustomer(Customer customer) {
Session session = factory.openSession();
Transaction transaction = session.beginTransaction();
session.save(customer);
transaction.commit();
session.close();
return false;
}
@Override
public boolean updateCustomer(Customer customer) {
Session session = factory.openSession();
Transaction transaction = session.beginTransaction();
session.update(customer);
transaction.commit();
session.close();
return true;
}
@Override
public boolean deleteCustomer(int customerId) {
Session session = factory.openSession();
Transaction transaction = session.beginTransaction();
Customer customer = new Customer();
customer.setCustomerId(customerId);
session.delete(customer);
transaction.commit();
session.close();
return true;
}
@Override
public List<Customer> listCustomers() {
Session session = factory.openSession();
Query query = session.createQuery("from Customer");
return query.list();
}
@Override
public Customer findCustomer(int customerId) {
Session session = factory.openSession();
Customer customer= (Customer) session.get(Customer.class, customerId);
session.close();
return customer;
}
@Override
public boolean isCustomerExists(int customerId) {
Session session = factory.openSession();
Customer customer= (Customer) session.get(Customer.class, customerId);
session.close();
if(customer == null)
return false;
else
return true;
}
}
| [
"noreply@github.com"
] | noreply@github.com |
d924fba01208e286662b2f71913f8717a35d73f8 | ce7f089378d817e242793649785b097c9be3f96b | /gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/wraith/Card20_290.java | dd60d3e4bc2500b9e0978cbd69a14fdc099f94a7 | [] | no_license | TheSkyGold/gemp-lotr | aaba1f461a3d9237d12ca340a7e899b00e4151e4 | aab299c87fc9cabd10b284c25b699f10a84fe622 | refs/heads/master | 2021-01-11T07:39:27.678795 | 2014-11-21T00:44:25 | 2014-11-21T00:44:25 | 32,382,766 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,894 | java | package com.gempukku.lotro.cards.set20.wraith;
import com.gempukku.lotro.cards.AbstractAttachable;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.effects.SelfDiscardEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndAddUntilEOPStrengthBonusEffect;
import com.gempukku.lotro.cards.modifiers.ResistanceModifier;
import com.gempukku.lotro.cards.modifiers.evaluator.ForEachBurdenEvaluator;
import com.gempukku.lotro.common.*;
import com.gempukku.lotro.filters.Filter;
import com.gempukku.lotro.filters.Filters;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
import com.gempukku.lotro.logic.actions.ActivateCardAction;
import com.gempukku.lotro.logic.modifiers.Modifier;
import com.gempukku.lotro.logic.timing.Action;
import java.util.Collections;
import java.util.List;
/**
* 1
* Faltering Courage
* Ringwraith Condition • Companion
* -1
* Twilight.
* To play, spot a Nazgul.
* Limit 1 per companion.
* Skirmish: Discard this condition to make a Nazgul skirmishing bearer strength +1 for each burden you can spot.
*/
public class Card20_290 extends AbstractAttachable {
public Card20_290() {
super(Side.SHADOW, CardType.CONDITION, 1, Culture.WRAITH, null, "Faltering Courage");
addKeyword(Keyword.TWILIGHT);
}
@Override
protected Filterable getValidTargetFilter(String playerId, LotroGame game, PhysicalCard self) {
return Filters.and(CardType.COMPANION, Filters.not(Filters.hasAttached(Filters.name(getName()))));
}
@Override
public boolean checkPlayRequirements(String playerId, LotroGame game, PhysicalCard self, int withTwilightRemoved, Filter additionalAttachmentFilter, int twilightModifier) {
return super.checkPlayRequirements(playerId, game, self, withTwilightRemoved, additionalAttachmentFilter, twilightModifier)
&& PlayConditions.canSpot(game, Race.NAZGUL);
}
@Override
public Modifier getAlwaysOnModifier(LotroGame game, PhysicalCard self) {
return new ResistanceModifier(self, Filters.hasAttached(self), -1);
}
@Override
protected List<? extends Action> getExtraPhaseActions(String playerId, LotroGame game, PhysicalCard self) {
if (PlayConditions.canUseShadowCardDuringPhase(game, Phase.SKIRMISH, self, 0)
&& PlayConditions.canSelfDiscard(self, game)) {
ActivateCardAction action = new ActivateCardAction(self);
action.appendCost(
new SelfDiscardEffect(self));
action.appendEffect(
new ChooseAndAddUntilEOPStrengthBonusEffect(action, self, playerId,
new ForEachBurdenEvaluator(), Race.NAZGUL, Filters.inSkirmishAgainst(self.getAttachedTo())));
return Collections.singletonList(action);
}
return null;
}
}
| [
"marcins78@eb7970ca-0f6f-de4b-2938-835b230b9d1f"
] | marcins78@eb7970ca-0f6f-de4b-2938-835b230b9d1f |
6df4055de2cbdeb5655793ec063b5f2c99f696fb | f3bf4e9c33098dfc98332775881493d65349810d | /DesignPatterns/Chapter4_FactoryPattern/FactoryPattern/src/com/factory_pattern/Chicago/ingredients/Spinach.java | 455656dfae6ff6fc5376bc114e0968b9d3742847 | [] | no_license | tomekb82/JavaProjects | 588ffe29e79e0999413ee9fd0d8a9596ecd6ef0b | 88ed90da4f3bb930962002da22a46dad9b2ef6ca | refs/heads/master | 2021-01-01T18:29:21.055062 | 2015-11-20T00:21:53 | 2015-11-20T00:21:53 | 20,363,504 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 194 | java | package com.factory_pattern.Chicago.ingredients;
import com.factory_pattern.ingredients.Veggies;
public class Spinach extends Veggies{
public Spinach(){
System.out.print("Spinach,");
}
}
| [
"tomasz.belina@qualent.eu"
] | tomasz.belina@qualent.eu |
beb9662763fc23237775557f07a0f0005e8c059d | 3876f846fbbf7305c50797c6fc28c5abe26bda5f | /duplikaatti/TrieLoader.java | 9434ebbd19e79f1c38c70d89a6a29055808e5698 | [] | no_license | KariKorpinen/Sanasto | baf4cd7904e5cfab30452c9206d61c58bab25936 | e65db69187df2dcf6803e9fc8629c25f776fdc6a | refs/heads/master | 2021-01-10T20:58:07.956302 | 2012-06-08T20:54:51 | 2012-06-08T20:54:51 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,924 | java | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package duplikaatti;
/**
*
* @author kkkorpin
*/
//package dsa.tries;
//import com.sun.org.apache.xml.internal.utils.Trie;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.util.Collection;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
public class TrieLoader {
public static Trie trieDSA;
Node root; // keep track of the root
Node position;
String tiedostonimi;
Object o4 ;//= new HashMap<String, String>();
Object[] oArray2 ;
//Object[] oArray1 = new Object[] {o1, o1, o2, o3, o3, o4};
//Object[] oArray2 = new Object[] {o4};
public static void main(String[] args) {
TrieLoader trieLoader = new TrieLoader();
trieDSA = new Trie();
trieLoader.load();
trieLoader.etsi();
//trieLoader.tulosta();
new TrieTestFrame();
}
public void etsi(){
System.out.println ("sisällä trieloader etsi funktio");
//trieDSA.search("rivi");
String s="rivi";
trieDSA.tulosta(s,tiedostonimi);
}
public void load(){
//trieDSA = new Trie();
BufferedReader br = null;
try {
tiedostonimi="src/properties/Musiciens2.txt";
br = new BufferedReader(new FileReader(new File("src/properties/Musiciens2.txt")));
//br = new BufferedReader(new FileReader(new File("src/properties/words.txt")));
String eachLine = null;
String[] pura;
String delimiter = " ";
int rivilaskuri=0;
while((eachLine=br.readLine())!=null){
//String[] temp;
/* delimiter */
//if s.nextLine().equals("")
/* given string will be split by the argument delimiter provided. */
//temp = str.split(delimiter);
rivilaskuri++;
System.out.println ("rivilaskuri "+rivilaskuri);
if(eachLine.trim().isEmpty())
{
// System.out.println ("tyhjä rivi ei lisätä");
}
else
{
System.out.println ("sisäänluetut rivilaskuri "+rivilaskuri);
pura=eachLine.split(delimiter);
for(int i =0; i < pura.length ; i++)
{
// if(pura[i].trim().isEmpty())
// {
// System.out.println ("tyhjä");
// }
// System.out.println (pura[i]);
boolean oldValue=trieDSA.search(pura[i]);
// System.out.println ("vanha arvo "+oldValue);
//if (line.trim().isEmpty()) {
// if(pura[i].trim().isEmpty())
// {
// System.out.println ("tyhjä");
// }
// else
// {
if (oldValue == false) {
trieDSA.insert(pura[i],rivilaskuri);
// System.out.println ("vanha arvo nolla");
// No duplicates.
//return;
}
//else if (oldValue instanceof HashSet) {
// 3.1 There are already duplicates, so add the new one.
// HashSet duplicates = (HashSet) oldValue;
// duplicates.add (pura[i]);
// System.out.println ("onko tyyppiä hashset");
// }
else {
// 3.2 This is the first duplicate => create a HashSet to store duplicates.
////////////////////////////////////////////////////7
//o4= new HashMap< "pura",pura[i]>();
//Object[] oArray1 = new Object[] {o1, o1, o2, o3, o3, o4};
//oArray2 = new Object[] {o4};
//Object[] oArray2 ;
//Object[] oArray1 = new Object[] {o1, o1, o2, o3, o3, o4};
//oArray2 = new Object[] {o4};
/////////////////////////////////////////////////////////
// System.out.println ("luodaan hash set");
// HashSet duplicates = new HashSet ();
// 3.3 Place old value and duplicate in hashset.
// duplicates.add (oldValue);
// duplicates.add (pura[i]);
// o4=duplicates;
// oArray2 = new Object[] {o4};
trieDSA.insert(pura[i],rivilaskuri);
//trieDSA.insert(oArray2.toString(),rivilaskuri);
// System.out.println (oArray2[0].toString());
// 3.4 Add the hashset itself as the value.
//trieDSA.insert.
//originalDataStructure.put (key, duplicates);
}
}
// System.out.println ("lopussa");
//System.out.println (pura[i]);
}
//trieDSA.
}
} catch (Exception e) {
e.printStackTrace();
} finally{
if(br!=null){
try {
br.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
// System.out.println (trieDSA.toString());
// trieDSA.tulosta("rivi");
}
public void tulosta()
{
// Trie trieDSA;
/* Collection values = trieDSA.values();
for (Iterator i=values.iterator(); i.hasNext(); ) {
Object obj = i.next();
// If the value is a HashSet, we have duplicates.
if (obj instanceof HashSet) {
// Extract the different values.
HashSet duplicates = (HashSet) obj;
for (Iterator j=duplicates.iterator(); j.hasNext(); ) {
System.out.println (j.next());
}
}
else {
// If it's not a HashSet, the extract obj is a value.
System.out.println (obj);
}
* *
*/
}
/*public void print() {
Node t=root;
System.out.println(root.letter + " *");
print(t.down);
}
void print(Node t) {
if(t==null) return;
//System.out.println(t.letter + " children");
Node temp=t;
while(t!=null) {
System.out.print(t.letter + " ");
if(t.endsWord)System.out.print("^");
t=t.right;
}
System.out.println("*");
t=temp;
while(t!=null) {
if(t.down!=null && t.right!=null) {
System.out.println(t.letter + " children");
print(t.down);
}
t=t.right;
}
}
*/
} | [
"karikkorpinen@gmail.com"
] | karikkorpinen@gmail.com |
87c5fde9ea0bd36b200759c6db87946f70ddc1ab | 5ffc13dee4b47a6ab9aa55f36404954742c021c9 | /wycli/src/main/java/wycli/cfg/ConfigFileParser.java | 5f52384554948c804cf6a3cec3a709806e377c6e | [
"Apache-2.0",
"BSD-3-Clause"
] | permissive | Paul-45428220/WhileyCompiler | ed025307a6d2c550ec708a2a2a552a8b02298c1f | 9e764a466225a97ea0d52a318736cc40b2216937 | refs/heads/main | 2023-06-20T19:47:24.693214 | 2021-07-25T03:15:50 | 2021-07-25T03:16:38 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 18,228 | java | // Copyright 2011 The Whiley Project Developers
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package wycli.cfg;
import static wycli.cfg.ConfigFileLexer.Token.Kind.*;
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.List;
import wycc.lang.Path;
import wycc.util.AbstractCompilationUnit.Identifier;
import wycli.cfg.ConfigFile.*;
import wycli.cfg.ConfigFileLexer.Token;
import wycc.lang.SyntacticItem;
import wycc.lang.SyntacticException;
import wycc.util.AbstractCompilationUnit.*;
/**
* Convert a list of tokens into an Abstract Syntax Tree (AST) representing the
* original configuration file in question.
*
* @author David J. Pearce
*
*/
public class ConfigFileParser {
private final ConfigFile file;
private final ArrayList<Token> tokens;
private int index;
public ConfigFileParser(Path id, List<Token> tokens) {
this.tokens = new ArrayList<>(tokens);
this.file = new ConfigFile(id);
}
/**
* Read a <code>ConfigFile</code> from the token stream. If the stream is
* invalid in some way (e.g. contains a syntax error, etc) then a
* <code>SyntaxError</code> is thrown.
*
* @return
*/
public ConfigFile read() {
List<Declaration> declarations = new ArrayList<>();
skipWhiteSpace();
while (index < tokens.size()) {
Token lookahead = tokens.get(index);
if (lookahead.kind == LeftSquare) {
declarations.add(parseSection());
} else {
declarations.add(parseKeyValuePair());
}
skipWhiteSpace();
}
// FIXME: why do we need this?
file.setDeclarations(new Tuple<>(declarations));
return file;
}
private Table parseSection() {
int start = index;
List<KeyValuePair> declarations = new ArrayList<>();
match(LeftSquare);
List<Identifier> name = parseSectionName();
match(RightSquare);
skipWhiteSpace();
while (index < tokens.size()) {
Token lookahead = tokens.get(index);
if (lookahead.kind == LeftSquare) {
break;
} else {
declarations.add(parseKeyValuePair());
}
skipWhiteSpace();
}
// Construct the new section
Table section = new Table(new Tuple<>(name), new Tuple<>(declarations));
//
return annotateSourceLocation(section, start);
}
private List<Identifier> parseSectionName() {
ArrayList<Identifier> identifiers = new ArrayList<>();
identifiers.add(parseIdentifier());
while (index < tokens.size() && tokens.get(index).kind == Dot) {
match(Token.Kind.Dot);
identifiers.add(parseIdentifier());
}
return identifiers;
}
private KeyValuePair parseKeyValuePair() {
int start = index;
Identifier key = parseIdentifier();
match(Token.Kind.Equals);
Value value = parseValue();
KeyValuePair r = annotateSourceLocation(new KeyValuePair(key, value), start);
skipWhiteSpace();
return r;
}
private Value parseValue() {
checkNotEof();
int start = index;
Value value;
Token token = tokens.get(index);
match(token.kind);
switch (token.kind) {
case False:
value = new Value.Bool(false);
break;
case True:
value = new Value.Bool(true);
break;
case IntValue:
value = new Value.Int(new BigInteger(token.text));
break;
case StringValue:
// FIXME: this is probably broken at the extremes
value = new Value.UTF8(parseString(token.text).getBytes());
break;
case LeftSquare:
index = start;
value = parseArrayValue();
break;
default:
syntaxError("unknown token", token);
return null; // deadcode
}
return annotateSourceLocation(value, start);
}
private Value.Array parseArrayValue() {
checkNotEof();
int start = index;
match(LeftSquare);
ArrayList<Value> values = new ArrayList<>();
Value last = null;
while (eventuallyMatch(RightSquare) == null) {
if(last != null) {
match(Comma);
}
Value v = parseValue();
if(last == null) {
last = v;
} else if(last.getClass() != v.getClass()){
throw new SyntacticException("array elements require same type", file, v);
}
values.add(v);
}
return new Value.Array(values);
}
private Identifier parseIdentifier() {
int start = skipWhiteSpace(index);
Token token = match(Identifier);
Identifier id = new Identifier(token.text);
return annotateSourceLocation(id, start);
}
private <T extends SyntacticItem> T annotateSourceLocation(T item, int start) {
return annotateSourceLocation(item, start, index - 1);
}
private <T extends SyntacticItem> T annotateSourceLocation(T item, int start, int end) {
// Allocate item to enclosing WhileyFile. This is necessary so that the
// annotations can then be correctly allocated as well.
item = file.allocate(item);
// Determine the first and last token representing this span.
Token first = tokens.get(start);
Token last = tokens.get(end);
file.allocate(new Attribute.Span(item, first.start, last.end()));
return item;
}
/**
* Match a given token kind, whilst moving passed any whitespace encountered
* inbetween. In the case that meet the end of the stream, or we don't match
* the expected token, then an error is thrown.
*
* @param kind
* @return
*/
private Token match(Token.Kind kind) {
checkNotEof();
Token token = tokens.get(index++);
if (token.kind != kind) {
syntaxError("expecting \"" + kind + "\" here", token);
}
return token;
}
/**
* Match a given sequence of tokens, whilst moving passed any whitespace
* encountered inbetween. In the case that meet the end of the stream, or we
* don't match the expected tokens in the expected order, then an error is
* thrown.
*
* @param operator
* @return
*/
private Token[] match(Token.Kind... kinds) {
Token[] result = new Token[kinds.length];
for (int i = 0; i != result.length; ++i) {
checkNotEof();
Token token = tokens.get(index++);
if (token.kind == kinds[i]) {
result[i] = token;
} else {
syntaxError("Expected \"" + kinds[i] + "\" here", token);
}
}
return result;
}
/**
* Attempt to match a given kind of token with the view that it must
* *eventually* be matched. This differs from <code>tryAndMatch()</code>
* because it calls <code>checkNotEof()</code>. Thus, it is guaranteed to
* skip any whitespace encountered in between. This is safe because we know
* there is a terminating token still to come.
*
* @param kind
* @return
*/
private Token eventuallyMatch(Token.Kind kind) {
checkNotEof();
Token token = tokens.get(index);
if (token.kind != kind) {
return null;
} else {
index = index + 1;
return token;
}
}
/**
* Attempt to match a given token(s), whilst ignoring any whitespace in
* between. Note that, in the case it fails to match, then the index will be
* unchanged. This latter point is important, otherwise we could
* accidentally gobble up some important indentation. If more than one kind
* is provided then this will try to match any of them.
*
* @param terminated
* Indicates whether or not this function should be concerned
* with new lines. The terminated flag indicates whether or not
* the current construct being parsed is known to be terminated.
* If so, then we don't need to worry about newlines and can
* greedily consume them (i.e. since we'll eventually run into
* the terminating symbol).
* @param kinds
*
* @return
*/
private Token tryAndMatch(boolean terminated, Token.Kind... kinds) {
// If the construct being parsed is know to be terminated, then we can
// skip all whitespace. Otherwise, we can't skip newlines as these are
// significant.
int next = terminated ? skipWhiteSpace(index) : skipLineSpace(index);
if (next < tokens.size()) {
Token t = tokens.get(next);
for (int i = 0; i != kinds.length; ++i) {
if (t.kind == kinds[i]) {
index = next + 1;
return t;
}
}
}
return null;
}
/**
* Attempt to match a given sequence of tokens in the given order, whilst
* ignoring any whitespace in between. Note that, in any case, the index
* will be unchanged!
*
* @param terminated
* Indicates whether or not this function should be concerned
* with new lines. The terminated flag indicates whether or not
* the current construct being parsed is known to be terminated.
* If so, then we don't need to worry about newlines and can
* greedily consume them (i.e. since we'll eventually run into
* the terminating symbol).
* @param kinds
*
* @return whether the sequence matches
*/
private boolean lookaheadSequence(boolean terminated, Token.Kind... kinds) {
int next = index;
for (Token.Kind k : kinds) {
next = terminated ? skipWhiteSpace(next) : skipLineSpace(next);
if (next >= tokens.size() || tokens.get(next++).kind != k) {
return false;
}
}
return true;
}
/**
* Check whether the current index is, after skipping all line spaces, at
* the end of a line. This method does not change the state!
*
* @return whether index is at end of line
*/
private boolean isAtEOL() {
int next = skipLineSpace(index);
return next >= tokens.size() || tokens.get(next).kind == NewLine;
}
/**
* Attempt to match a given token on the *same* line, whilst ignoring any
* whitespace in between. Note that, in the case it fails to match, then the
* index will be unchanged. This latter point is important, otherwise we
* could accidentally gobble up some important indentation.
*
* @param kind
* @return
*/
private Token tryAndMatchOnLine(Token.Kind kind) {
int next = skipLineSpace(index);
if (next < tokens.size()) {
Token t = tokens.get(next);
if (t.kind == kind) {
index = next + 1;
return t;
}
}
return null;
}
/**
* Match a the end of a line. This is required to signal, for example, the
* end of the current statement.
*/
private void matchEndLine() {
// First, parse all whitespace characters except for new lines
index = skipLineSpace(index);
// Second, check whether we've reached the end-of-file (as signaled by
// running out of tokens), or we've encountered some token which not a
// newline.
if (index >= tokens.size()) {
return; // EOF
} else if (tokens.get(index).kind != NewLine) {
syntaxError("expected end-of-line", tokens.get(index));
} else {
index = index + 1;
}
}
/**
* Check that the End-Of-File has not been reached. This method should be
* called from contexts where we are expecting something to follow.
*/
private void checkNotEof() {
skipWhiteSpace();
if (index >= tokens.size()) {
if (index > 0) {
syntaxError("unexpected end-of-file", tokens.get(index - 1));
} else {
// I believe this is actually dead-code, since checkNotEof()
// won't be called before at least one token is matched.
throw new SyntacticException("unexpected end-of-file", file, null);
}
}
}
/**
* Skip over any whitespace characters.
*/
private void skipWhiteSpace() {
index = skipWhiteSpace(index);
}
/**
* Skip over any whitespace characters, starting from a given index and
* returning the first index passed any whitespace encountered.
*/
private int skipWhiteSpace(int index) {
while (index < tokens.size() && isWhiteSpace(tokens.get(index))) {
index++;
}
return index;
}
/**
* Skip over any whitespace characters that are permitted on a given line
* (i.e. all except newlines), starting from a given index and returning the
* first index passed any whitespace encountered.
*/
private int skipLineSpace(int index) {
while (index < tokens.size() && isLineSpace(tokens.get(index))) {
index++;
}
return index;
}
/**
* Skip over any empty lines. That is lines which contain only whitespace
* and comments.
*/
private void skipEmptyLines() {
int tmp = index;
do {
tmp = skipLineSpace(tmp);
if (tmp < tokens.size() && tokens.get(tmp).kind != Token.Kind.NewLine) {
return; // done
} else if (tmp >= tokens.size()) {
index = tmp;
return; // end-of-file reached
}
// otherwise, skip newline and continue
tmp = tmp + 1;
index = tmp;
} while (true);
// deadcode
}
/**
* Define what is considered to be whitespace.
*
* @param token
* @return
*/
private boolean isWhiteSpace(Token token) {
return token.kind == Token.Kind.NewLine || isLineSpace(token);
}
/**
* Define what is considered to be linespace.
*
* @param token
* @return
*/
private boolean isLineSpace(Token token) {
return token.kind == Token.Kind.Indent || token.kind == Token.Kind.LineComment;
}
/**
* Parse a character from a string of the form 'c' or '\c'.
*
* @param input
* @return
*/
private BigInteger parseCharacter(String input) {
int pos = 1;
char c = input.charAt(pos++);
if (c == '\\') {
// escape code
switch (input.charAt(pos++)) {
case 'b':
c = '\b';
break;
case 't':
c = '\t';
break;
case 'n':
c = '\n';
break;
case 'f':
c = '\f';
break;
case 'r':
c = '\r';
break;
case '"':
c = '\"';
break;
case '\'':
c = '\'';
break;
case '\\':
c = '\\';
break;
default:
throw new RuntimeException("unrecognised escape character");
}
}
return BigInteger.valueOf(c);
}
/**
* Parse a string constant whilst interpreting all escape characters.
*
* @param v
* @return
*/
protected String parseString(String v) {
/*
* Parsing a string requires several steps to be taken. First, we need
* to strip quotes from the ends of the string.
*/
v = v.substring(1, v.length() - 1);
StringBuffer result = new StringBuffer();
// Second, step through the string and replace escaped characters
for (int i = 0; i < v.length(); i++) {
if (v.charAt(i) == '\\') {
if (v.length() <= i + 1) {
throw new RuntimeException("unexpected end-of-string");
} else {
char replace = 0;
int len = 2;
switch (v.charAt(i + 1)) {
case 'b':
replace = '\b';
break;
case 't':
replace = '\t';
break;
case 'n':
replace = '\n';
break;
case 'f':
replace = '\f';
break;
case 'r':
replace = '\r';
break;
case '"':
replace = '\"';
break;
case '\'':
replace = '\'';
break;
case '\\':
replace = '\\';
break;
case 'u':
len = 6; // unicode escapes are six digits long,
// including "slash u"
String unicode = v.substring(i + 2, i + 6);
replace = (char) Integer.parseInt(unicode, 16); // unicode
i = i + 5;
break;
default:
throw new RuntimeException("unknown escape character");
}
result = result.append(replace);
i = i + 1;
}
} else {
result = result.append(v.charAt(i));
}
}
return result.toString();
}
/**
* Parse a token representing a byte value. Every such token is a sequence
* of one or more binary digits ('0' or '1') followed by 'b'. For example,
* "00110b" is parsed as the byte value 6.
*
* @param input
* The token representing the byte value.
* @return
*/
private byte parseByte(Token input) {
String text = input.text;
if (text.length() > 9) {
syntaxError("invalid binary literal (too long)", input);
}
int val = 0;
for (int i = 0; i != text.length() - 1; ++i) {
val = val << 1;
char c = text.charAt(i);
if (c == '1') {
val = val | 1;
} else if (c == '0') {
} else {
syntaxError("invalid binary literal (invalid characters)", input);
}
}
return (byte) val;
}
private void syntaxError(String msg, Token t) {
throw new SyntacticException(msg, file, new ConfigFile.Attribute.Span(null, t.start, t.end()));
}
/**
* Represents a given amount of indentation. Specifically, a count of tabs
* and spaces. Observe that the order in which tabs / spaces occurred is not
* retained.
*
* @author David J. Pearce
*
*/
private static class Indent extends Token {
private final int countOfSpaces;
private final int countOfTabs;
public Indent(String text, int pos) {
super(Token.Kind.Indent, text, pos);
// Count the number of spaces and tabs
int nSpaces = 0;
int nTabs = 0;
for (int i = 0; i != text.length(); ++i) {
char c = text.charAt(i);
switch (c) {
case ' ':
nSpaces++;
break;
case '\t':
nTabs++;
break;
default:
throw new IllegalArgumentException("Space or tab character expected");
}
}
countOfSpaces = nSpaces;
countOfTabs = nTabs;
}
/**
* Test whether this indentation is considered "less than or equivalent"
* to another indentation. For example, an indentation of 2 spaces is
* considered less than an indentation of 3 spaces, etc.
*
* @param other
* The indent to compare against.
* @return
*/
public boolean lessThanEq(Indent other) {
return countOfSpaces <= other.countOfSpaces && countOfTabs <= other.countOfTabs;
}
/**
* Test whether this indentation is considered "equivalent" to another
* indentation. For example, an indentation of 3 spaces followed by 1
* tab is considered equivalent to an indentation of 1 tab followed by 3
* spaces, etc.
*
* @param other
* The indent to compare against.
* @return
*/
public boolean equivalent(Indent other) {
return countOfSpaces == other.countOfSpaces && countOfTabs == other.countOfTabs;
}
}
/**
* An abstract indentation which represents the indentation of top-level
* declarations, such as function declarations. This is used to simplify the
* code for parsing indentation.
*/
private static final Indent ROOT_INDENT = new Indent("", 0);
}
| [
"david.pearce@ecs.vuw.ac.nz"
] | david.pearce@ecs.vuw.ac.nz |
ced3f4444836e311f7b238e668b10778ff0b2c9d | 600fb29dc56deca2aedfafdf171d533632af5220 | /spring-webmvc/src/test/java/org/springframework/web/servlet/mvc/method/annotation/MethodValidationTests.java | 2ec4208fae306ac85d96866738ba3dc94f13e111 | [
"Apache-2.0"
] | permissive | smxknife/spring-framework | db9803b80794f1e138e1831a83d315ccdd3b6e26 | 9eb1fbd5c38244f0878cd4ea3e3253decef2f8d0 | refs/heads/master | 2023-07-12T07:59:38.141979 | 2023-07-03T15:18:27 | 2023-07-03T15:18:27 | 117,548,713 | 0 | 0 | null | 2018-01-15T13:26:32 | 2018-01-15T13:26:32 | null | UTF-8 | Java | false | false | 16,616 | java | /*
* Copyright 2002-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.web.servlet.mvc.method.annotation;
import java.lang.reflect.Method;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Set;
import java.util.function.Consumer;
import jakarta.validation.ConstraintViolation;
import jakarta.validation.Valid;
import jakarta.validation.constraints.Size;
import jakarta.validation.executable.ExecutableValidator;
import jakarta.validation.metadata.BeanDescriptor;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.springframework.context.MessageSourceResolvable;
import org.springframework.http.MediaType;
import org.springframework.util.Assert;
import org.springframework.validation.Errors;
import org.springframework.validation.FieldError;
import org.springframework.validation.Validator;
import org.springframework.validation.annotation.Validated;
import org.springframework.validation.beanvalidation.LocalValidatorFactoryBean;
import org.springframework.validation.beanvalidation.SpringValidatorAdapter;
import org.springframework.validation.method.ParameterValidationResult;
import org.springframework.web.bind.MethodArgumentNotValidException;
import org.springframework.web.bind.WebDataBinder;
import org.springframework.web.bind.annotation.InitBinder;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestHeader;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.support.ConfigurableWebBindingInitializer;
import org.springframework.web.context.support.GenericWebApplicationContext;
import org.springframework.web.method.HandlerMethod;
import org.springframework.web.method.annotation.HandlerMethodValidationException;
import org.springframework.web.servlet.HandlerMapping;
import org.springframework.web.testfixture.method.ResolvableMethod;
import org.springframework.web.testfixture.servlet.MockHttpServletRequest;
import org.springframework.web.testfixture.servlet.MockHttpServletResponse;
import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.catchThrowableOfType;
import static org.mockito.Mockito.mock;
/**
* Method validation tests for Spring MVC controller methods.
* <p>When adding tests, consider the following others:
* <ul>
* <li>{@code HandlerMethodTests} -- detection if methods need validation
* <li>{@code MethodValidationAdapterTests} -- method validation independent of Spring MVC
* <li>{@code MethodValidationProxyTests} -- method validation with proxy scenarios
* </ul>
* @author Rossen Stoyanchev
*/
public class MethodValidationTests {
private static final Person mockPerson = mock(Person.class);
private static final Errors mockErrors = mock(Errors.class);
private final MockHttpServletRequest request = new MockHttpServletRequest();
private final MockHttpServletResponse response = new MockHttpServletResponse();
private RequestMappingHandlerAdapter handlerAdapter;
private InvocationCountingValidator jakartaValidator;
@BeforeEach
void setup() throws Exception {
LocalValidatorFactoryBean validatorBean = new LocalValidatorFactoryBean();
validatorBean.afterPropertiesSet();
this.jakartaValidator = new InvocationCountingValidator(validatorBean);
this.handlerAdapter = initHandlerAdapter(this.jakartaValidator);
this.request.setMethod("POST");
this.request.setContentType(MediaType.APPLICATION_FORM_URLENCODED_VALUE);
this.request.setAttribute(HandlerMapping.URI_TEMPLATE_VARIABLES_ATTRIBUTE, new HashMap<String, String>(0));
}
private static RequestMappingHandlerAdapter initHandlerAdapter(Validator validator) {
ConfigurableWebBindingInitializer bindingInitializer = new ConfigurableWebBindingInitializer();
bindingInitializer.setValidator(validator);
GenericWebApplicationContext context = new GenericWebApplicationContext();
context.refresh();
RequestMappingHandlerAdapter handlerAdapter = new RequestMappingHandlerAdapter();
handlerAdapter.setWebBindingInitializer(bindingInitializer);
handlerAdapter.setApplicationContext(context);
handlerAdapter.setBeanFactory(context.getBeanFactory());
handlerAdapter.afterPropertiesSet();
return handlerAdapter;
}
@Test
void modelAttribute() {
HandlerMethod hm = handlerMethod(new ValidController(), c -> c.handle(mockPerson));
this.request.addParameter("name", "name=Faustino1234");
MethodArgumentNotValidException ex = catchThrowableOfType(
() -> this.handlerAdapter.handle(this.request, this.response, hm),
MethodArgumentNotValidException.class);
assertThat(this.jakartaValidator.getValidationCount()).isEqualTo(1);
assertThat(this.jakartaValidator.getMethodValidationCount()).as("Method validation unexpected").isEqualTo(0);
assertBeanResult(ex.getBindingResult(), "student", Collections.singletonList(
"""
Field error in object 'student' on field 'name': rejected value [name=Faustino1234]; \
codes [Size.student.name,Size.name,Size.java.lang.String,Size]; \
arguments [org.springframework.context.support.DefaultMessageSourceResolvable: \
codes [student.name,name]; arguments []; default message [name],10,1]; \
default message [size must be between 1 and 10]"""));
}
@Test
void modelAttributeWithBindingResult() throws Exception {
HandlerMethod hm = handlerMethod(new ValidController(), c -> c.handle(mockPerson, mockErrors));
this.request.addParameter("name", "name=Faustino1234");
this.handlerAdapter.handle(this.request, this.response, hm);
assertThat(this.jakartaValidator.getValidationCount()).isEqualTo(1);
assertThat(this.jakartaValidator.getMethodValidationCount()).as("Method validation unexpected").isEqualTo(0);
assertThat(response.getContentAsString()).isEqualTo(
"""
org.springframework.validation.BeanPropertyBindingResult: 1 errors
Field error in object 'student' on field 'name': rejected value [name=Faustino1234]; \
codes [Size.student.name,Size.name,Size.java.lang.String,Size]; \
arguments [org.springframework.context.support.DefaultMessageSourceResolvable: \
codes [student.name,name]; arguments []; default message [name],10,1]; \
default message [size must be between 1 and 10]""");
}
@Test
void modelAttributeWithBindingResultAndRequestHeader() {
HandlerMethod hm = handlerMethod(new ValidController(), c -> c.handle(mockPerson, mockErrors, ""));
this.request.addParameter("name", "name=Faustino1234");
this.request.addHeader("myHeader", "123");
HandlerMethodValidationException ex = catchThrowableOfType(
() -> this.handlerAdapter.handle(this.request, this.response, hm),
HandlerMethodValidationException.class);
assertThat(this.jakartaValidator.getValidationCount()).isEqualTo(1);
assertThat(this.jakartaValidator.getMethodValidationCount()).isEqualTo(1);
assertThat(ex.getAllValidationResults()).hasSize(2);
assertBeanResult(ex.getBeanResults().get(0), "student", Collections.singletonList(
"""
Field error in object 'student' on field 'name': rejected value [name=Faustino1234]; \
codes [Size.student.name,Size.name,Size.java.lang.String,Size]; \
arguments [org.springframework.context.support.DefaultMessageSourceResolvable: \
codes [student.name,name]; arguments []; default message [name],10,1]; \
default message [size must be between 1 and 10]"""));
assertValueResult(ex.getValueResults().get(0), 2, "123", Collections.singletonList(
"""
org.springframework.context.support.DefaultMessageSourceResolvable: \
codes [Size.validController#handle.myHeader,Size.myHeader,Size.java.lang.String,Size]; \
arguments [org.springframework.context.support.DefaultMessageSourceResolvable: \
codes [validController#handle.myHeader,myHeader]; arguments []; default message [myHeader],10,5]; \
default message [size must be between 5 and 10]"""
));
}
@Test
void validatedWithMethodValidation() throws Exception {
// 1 for @Validated argument validation + 1 for method validation of @RequestHeader
this.jakartaValidator.setMaxInvocationsExpected(2);
HandlerMethod hm = handlerMethod(new ValidController(), c -> c.handleValidated(mockPerson, mockErrors, ""));
this.request.addParameter("name", "name=Faustino1234");
this.request.addHeader("myHeader", "12345");
this.handlerAdapter.handle(this.request, this.response, hm);
assertThat(jakartaValidator.getValidationCount()).isEqualTo(2);
assertThat(jakartaValidator.getMethodValidationCount()).isEqualTo(1);
assertThat(response.getContentAsString()).isEqualTo(
"""
org.springframework.validation.BeanPropertyBindingResult: 1 errors
Field error in object 'person' on field 'name': rejected value [name=Faustino1234]; \
codes [Size.person.name,Size.name,Size.java.lang.String,Size]; \
arguments [org.springframework.context.support.DefaultMessageSourceResolvable: \
codes [person.name,name]; arguments []; default message [name],10,1]; \
default message [size must be between 1 and 10]""");
}
@Test
void jakartaAndSpringValidator() throws Exception {
HandlerMethod hm = handlerMethod(new InitBinderController(), ibc -> ibc.handle(mockPerson, mockErrors, ""));
this.request.addParameter("name", "name=Faustino1234");
this.request.addHeader("myHeader", "12345");
this.handlerAdapter.handle(this.request, this.response, hm);
assertThat(jakartaValidator.getValidationCount()).isEqualTo(1);
assertThat(jakartaValidator.getMethodValidationCount()).isEqualTo(1);
assertThat(response.getContentAsString()).isEqualTo(
"""
org.springframework.validation.BeanPropertyBindingResult: 2 errors
Field error in object 'person' on field 'name': rejected value [name=Faustino1234]; \
codes [TOO_LONG.person.name,TOO_LONG.name,TOO_LONG.java.lang.String,TOO_LONG]; \
arguments []; default message [length must be 10 or under]
Field error in object 'person' on field 'name': rejected value [name=Faustino1234]; \
codes [Size.person.name,Size.name,Size.java.lang.String,Size]; \
arguments [org.springframework.context.support.DefaultMessageSourceResolvable: \
codes [person.name,name]; arguments []; default message [name],10,1]; \
default message [size must be between 1 and 10]""");
}
@Test
void springValidator() throws Exception {
HandlerMethod hm = handlerMethod(new ValidController(), c -> c.handle(mockPerson, mockErrors));
this.request.addParameter("name", "name=Faustino1234");
RequestMappingHandlerAdapter springValidatorHandlerAdapter = initHandlerAdapter(new PersonValidator());
springValidatorHandlerAdapter.handle(this.request, this.response, hm);
assertThat(response.getContentAsString()).isEqualTo(
"""
org.springframework.validation.BeanPropertyBindingResult: 1 errors
Field error in object 'student' on field 'name': rejected value [name=Faustino1234]; \
codes [TOO_LONG.student.name,TOO_LONG.name,TOO_LONG.java.lang.String,TOO_LONG]; \
arguments []; default message [length must be 10 or under]""");
}
@SuppressWarnings("unchecked")
private static <T> HandlerMethod handlerMethod(T controller, Consumer<T> mockCallConsumer) {
Assert.isTrue(!(controller instanceof Class<?>), "Expected controller instance");
Method method = ResolvableMethod.on((Class<T>) controller.getClass()).mockCall(mockCallConsumer).method();
return new HandlerMethod(controller, method);
}
@SuppressWarnings("SameParameterValue")
private static void assertBeanResult(Errors errors, String objectName, List<String> fieldErrors) {
assertThat(errors.getObjectName()).isEqualTo(objectName);
assertThat(errors.getFieldErrors())
.extracting(FieldError::toString)
.containsExactlyInAnyOrderElementsOf(fieldErrors);
}
@SuppressWarnings("SameParameterValue")
private static void assertValueResult(
ParameterValidationResult result, int parameterIndex, Object argument, List<String> errors) {
assertThat(result.getMethodParameter().getParameterIndex()).isEqualTo(parameterIndex);
assertThat(result.getArgument()).isEqualTo(argument);
assertThat(result.getResolvableErrors())
.extracting(MessageSourceResolvable::toString)
.containsExactlyInAnyOrderElementsOf(errors);
}
@SuppressWarnings("unused")
private record Person(@Size(min = 1, max = 10) String name) {
@Override
public String name() {
return this.name;
}
}
@SuppressWarnings({"unused", "SameParameterValue", "UnusedReturnValue"})
@RestController
static class ValidController {
void handle(@Valid @ModelAttribute("student") Person person) {
}
String handle(@Valid @ModelAttribute("student") Person person, Errors errors) {
return errors.toString();
}
void handle(@Valid @ModelAttribute("student") Person person, Errors errors,
@RequestHeader @Size(min = 5, max = 10) String myHeader) {
}
String handleValidated(@Validated Person person, Errors errors,
@RequestHeader @Size(min = 5, max = 10) String myHeader) {
return errors.toString();
}
}
@SuppressWarnings({"unused", "UnusedReturnValue", "SameParameterValue"})
@RestController
static class InitBinderController {
@InitBinder
void initBinder(WebDataBinder dataBinder) {
dataBinder.addValidators(new PersonValidator());
}
String handle(@Valid Person person, Errors errors, @RequestHeader @Size(min = 5, max = 10) String myHeader) {
return errors.toString();
}
}
private static class PersonValidator implements Validator {
@Override
public boolean supports(Class<?> clazz) {
return (clazz == Person.class);
}
@Override
public void validate(Object target, Errors errors) {
Person person = (Person) target;
if (person.name().length() > 10) {
errors.rejectValue("name", "TOO_LONG", "length must be 10 or under");
}
}
}
/**
* Intercept and count number of method validation calls.
*/
private static class InvocationCountingValidator implements jakarta.validation.Validator, Validator {
private final SpringValidatorAdapter delegate;
private int maxInvocationsExpected = 1;
private int validationCount;
private int methodValidationCount;
/**
* Constructor with maxCount=1.
*/
private InvocationCountingValidator(SpringValidatorAdapter delegate) {
this.delegate = delegate;
}
public void setMaxInvocationsExpected(int maxInvocationsExpected) {
this.maxInvocationsExpected = maxInvocationsExpected;
}
/**
* Total number of times Bean Validation was invoked.
*/
public int getValidationCount() {
return this.validationCount;
}
/**
* Number of times method level Bean Validation was invoked.
*/
public int getMethodValidationCount() {
return this.methodValidationCount;
}
@Override
public <T> Set<ConstraintViolation<T>> validate(T object, Class<?>... groups) {
throw new UnsupportedOperationException();
}
@Override
public <T> Set<ConstraintViolation<T>> validateProperty(T object, String propertyName, Class<?>... groups) {
throw new UnsupportedOperationException();
}
@Override
public <T> Set<ConstraintViolation<T>> validateValue(Class<T> beanType, String propertyName, Object value, Class<?>... groups) {
throw new UnsupportedOperationException();
}
@Override
public BeanDescriptor getConstraintsForClass(Class<?> clazz) {
throw new UnsupportedOperationException();
}
@Override
public <T> T unwrap(Class<T> type) {
throw new UnsupportedOperationException();
}
@Override
public ExecutableValidator forExecutables() {
this.methodValidationCount++;
assertCountAndIncrement();
return this.delegate.forExecutables();
}
@Override
public boolean supports(Class<?> clazz) {
return true;
}
@Override
public void validate(Object target, Errors errors) {
assertCountAndIncrement();
this.delegate.validate(target, errors);
}
private void assertCountAndIncrement() {
assertThat(this.validationCount++).as("Too many calls to Bean Validation").isLessThan(this.maxInvocationsExpected);
}
}
}
| [
"rstoyanchev@vmware.com"
] | rstoyanchev@vmware.com |
9bdf5d016cd6ff18335168631d53cd4db5f16809 | 3aabd1696b96cf0409ea692ff1f96802865638c2 | /greedyItem.java | 1d3ec43b8ccfd2fb8e49e74fbfb8a89d2263d2b1 | [] | no_license | DjTripleX/RucksackProblem | 745a0fe6e541d02def3f54a5d505d98c7e41eba5 | 9c66b41829a82c550c67c542d65c5b7e34ee33a0 | refs/heads/master | 2020-12-14T18:53:13.487040 | 2016-05-19T16:58:38 | 2016-05-19T16:58:38 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 176 | java |
public class greedyItem {
/**
* i
*/
int k;
/**
* p''
*/
float d;
public greedyItem(int k, float d){
this.k = k;
this.d = d;
}
}
| [
"andi.neu@kessler-privat.de"
] | andi.neu@kessler-privat.de |
7d18d0b588bea09ab28da60a9a16383f16c6ccc1 | 85659db6cd40fcbd0d4eca9654a018d3ac4d0925 | /packages/CheckIn/DataCollection/DataCollection/src/com/motorola/datacollection/CheckinEventHelper.java | cc535b775be7f663abca31926ed010144cae2ca2 | [] | no_license | qwe00921/switchui | 28e6e9e7da559c27a3a6663495a5f75593f48fb8 | 6d859b67402fb0cd9f7e7a9808428df108357e4d | refs/heads/master | 2021-01-17T06:34:05.414076 | 2014-01-15T15:40:35 | 2014-01-15T15:40:35 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,630 | java | /*
* Copyright (C) 2011 Motorola Mobility, Inc.
* All Rights Reserved.
* Motorola Mobility Confidential Restricted.
*
* Revision History:
* Author Date CR Number Brief Description
* ------------------------- ---------- ----------------- ------------------------------
* w04917 (Brian Lee) 2012/02/14 IKCTXTAW-441 Initial version
* w04917 (Brian Lee) 2012/02/21 IKCTXTAW-442 Detailed meter data checkin event change.
*/
package com.motorola.datacollection;
import java.util.Collection;
import java.util.List;
import android.content.ContentResolver;
import com.motorola.android.provider.CheckinEvent;
import com.motorola.data.event.api.Segment;
/**
* @author w04917 Brian Lee
*
* This helper class is a wrapper around CheckinEvent
* to add commonly used functions that's not in the CheckinEvent API.
* It would have been ideal to subclass the CheckinEvent class,
* but the CheckinEvent class is a final class. It would have been easier
* if CheckinEvent class had final methods, instead of being a final class.
*/
public class CheckinEventHelper {
private static final String VALUE_NULL = "null";
private final CheckinEvent mCheckinEvent;
private boolean mHasSegments = false;
public CheckinEventHelper(String tag, String eventName, String version)
throws IllegalArgumentException {
mCheckinEvent = new CheckinEvent(tag, eventName, version);
}
public CheckinEventHelper(String tag, String eventName, String version, long timestamp)
throws IllegalArgumentException {
mCheckinEvent = new CheckinEvent(tag, eventName, version, timestamp);
}
public final void publish(ContentResolver cr) throws IllegalArgumentException, Exception {
mCheckinEvent.publish(cr);
}
public final void addSegment(Segment segment) {
if (segment != null) {
mCheckinEvent.addSegment(segment);
mHasSegments = true;
}
}
/**
* Given a Collection of segments, adds the non-null segment members of the collection
* to the wrapped CheckinEvent.
* @param segments Collection of segments to add, can be null. If null, no segments are added.
* @return number of segments added
*/
public final int addSegments(Collection<Segment> segments) {
int segmentAdded = 0;
if (segments != null) {
for (Segment segment : segments) {
if (segment != null) {
mCheckinEvent.addSegment(segment);
segmentAdded++;
mHasSegments = true;
}
}
}
return segmentAdded;
}
/**
* @return number of segments in the wrapped CheckinEvent
*/
public final int getSegmentCount() {
int segmentCount = 0;
List<Segment> segmentList = mCheckinEvent.getSegments();
if (segmentList != null) {
segmentCount = segmentList.size();
}
return segmentCount;
}
/**
* @return true if the wrapped CheckinEvent has segments, false otherwise
*/
public final boolean hasSegments() {
return mHasSegments;
}
/**
* Sets a value for the specified field in the CheckinEvent
* @param key key
* @param value value to set
* @throws IllegalArgumentException
*/
public final void setValue(String key, String value) throws IllegalArgumentException {
if (value == null || value.isEmpty()) {
value = VALUE_NULL;
}
mCheckinEvent.setValue(key, value);
}
/**
* Sets a value for the specified field in the CheckinEvent
* @param key key
* @param value value to set
* @throws IllegalArgumentException
*/
public final void setValue(String key, long value) throws IllegalArgumentException {
mCheckinEvent.setValue(key, value);
}
/**
* @return length of the check-in String represented by the wrapped CheckinEvent,
* including its segments
*/
public final int length() {
int length = 0;
String checkInString = this.toString();
if (checkInString != null) {
length = checkInString.length();
}
return length;
}
@Override
/* generates the check-in String represented by the wrapped CheckinEvent */
public final String toString() {
StringBuilder sb = mCheckinEvent.serializeEvent();
String checkInString = "";
if (sb != null) {
checkInString = sb.toString();
}
return checkInString;
}
}
| [
"cheng.carmark@gmail.com"
] | cheng.carmark@gmail.com |
89e278246476ea08ab31efb868772bc5a17cdefc | 296cdd8a3ef1d7436c1957e403b47f6a62ba5efb | /src/main/java/com/sds/acube/luxor/ws/client/rsc/AbstractList.java | 0972fdf2fcd79d5f5e7765dc4070df8d6637da4c | [] | no_license | seoyoungrag/byucksan_luxor | 6611276e871c13cbb5ea013d49ac79be678f03e5 | 7ecb824ec8e78e95bd2a962ce4d6c54e3c51b6b3 | refs/heads/master | 2021-03-16T05:17:42.571476 | 2017-07-24T08:28:47 | 2017-07-24T08:28:47 | 83,280,413 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 916 | java |
package com.sds.acube.luxor.ws.client.rsc;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for abstractList complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="abstractList">
* <complexContent>
* <extension base="{http://ws.rsc.collaboration.luxor.acube.sds.com/}abstractCollection">
* <sequence>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "abstractList")
@XmlSeeAlso({
ArrayList.class
})
public abstract class AbstractList
extends AbstractCollection
{
}
| [
"truezure@gmail.com"
] | truezure@gmail.com |
06ad98a2f31eeb2337698b377891aeb8bada7911 | 9290dc87ec131f3ef5253224f264875e41b0477d | /Tarun_Day4_Java/Exer/example2.java | b111089320fbe2b86b5cb4283d5bacc54943bf6f | [] | no_license | TarunSikka/JavaPrograms | 3ba83f592953f9f46f6cb95f780ce9b35e4e3e1b | 353b6704686a087097db9492baee9b3a4b1c6077 | refs/heads/master | 2020-03-28T09:43:40.318202 | 2018-12-13T15:16:43 | 2018-12-13T15:16:43 | 148,055,462 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 718 | java | public class Example2 {
public static void main(String[] args) {
Example2 tester=new Example2();
MathOperation addition=(int a,int b)->a+b;
MathOperation subtraction=( a, b)->a-b;
MathOperation multiplication=(int a,int b)->{return a*b;};
MathOperation division=(int a,int b)->a/b;
System.out.println("10+5= "+tester.operate(10,5,addition));
System.out.println("10-5= "+tester.operate(10,5,subtraction));
System.out.println("10*5= "+tester.operate(10,5,multiplication));
System.out.println("10/5= "+tester.operate(10,5,division));
}
interface MathOperation{
int operation(int a,int b);
}
private int operate(int a,int b,MathOperation mathOperation)
{
return mathOperation.operation(a,b);
}
} | [
"gooddude1224@gmail.com"
] | gooddude1224@gmail.com |
81b856ffc497ddc7f248219f50f3fd2cc27720c0 | 13f6863d7c3049c30641458c17376eb6213add3d | /src/br/ufrj/ad/simulator/controllers/ControladorGraficoVazaoEventos.java | a68891858bcb93b18a012f3c7cb7b432667fa94c | [] | no_license | andrerfsilva/tcp_simulator | fb56cafca6e9f44765e0294548b0187d19c76e8c | d33c96156434e7b0e8709cd47b582a9cab7c56cb | refs/heads/master | 2020-05-19T12:59:42.861283 | 2013-08-14T20:31:43 | 2013-08-14T20:31:43 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 826 | java | package br.ufrj.ad.simulator.controllers;
import java.io.IOException;
import javax.swing.JFrame;
import br.ufrj.ad.simulator.models.Simulador;
import br.ufrj.ad.simulator.views.JanelaGraficoVazaoEventos;
public class ControladorGraficoVazaoEventos {
private JanelaGraficoVazaoEventos janelaGraficoVazaoEventos;
private Simulador simulador;
public ControladorGraficoVazaoEventos() throws IOException {
this.simulador = new Simulador();
janelaGraficoVazaoEventos = new JanelaGraficoVazaoEventos(
simulador.getAmostrasVazaoXNumeroEventos(), simulador.getSeed());
}
public static void main(String[] args) throws IOException {
ControladorGraficoVazaoEventos controlador = new ControladorGraficoVazaoEventos();
controlador.janelaGraficoVazaoEventos
.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}
| [
"andrerfsilva@gmail.com"
] | andrerfsilva@gmail.com |
2676bb299021ef260b841b7da9bb1840a9777c3c | 3955f3bc4b1e9c41ffabb34fcdbfbfb3a8b2f77c | /bizcore/WEB-INF/youbenben_core_src/com/youbenben/youbenben/retailstoreclosing/CandidateRetailStoreClosing.java | b1e7d8c182759d86e6041055ce0901a54ecba7bf | [] | no_license | 1342190832/youbenben | c9ba34117b30988419d4d053a35960f35cd2c3f0 | f68fb29f17ff4f74b0de071fe11bc9fb10fd8744 | refs/heads/master | 2022-04-25T10:17:48.674515 | 2020-04-25T14:22:40 | 2020-04-25T14:22:40 | 258,133,780 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 204 | java |
package com.youbenben.youbenben.retailstoreclosing;
import com.youbenben.youbenben.BaseCandidateEntity;
public class CandidateRetailStoreClosing extends BaseCandidateEntity<RetailStoreClosing>{
}
| [
"1342190832@qq.com"
] | 1342190832@qq.com |
e2902af3806750d78927567c603347d90b78956e | 9b3b5f995f439c32cb821bfbc0807cda089d32ac | /core/src/ru/mygame/base/EnemySettingsDto.java | 2abe36bd52e62d82f39628bbf8eefff1a4f83237 | [] | no_license | Johnny2825/StarGame | ea1e7f80c046e1ef1a6153c3ef09fae2198ccccc | 0860aecb8825ba22abe7c97d2b09a9e7bf95f779 | refs/heads/master | 2023-01-11T10:09:38.212664 | 2020-11-10T06:27:35 | 2020-11-10T06:27:35 | 304,279,118 | 0 | 0 | null | 2020-11-12T09:14:00 | 2020-10-15T09:42:57 | Java | UTF-8 | Java | false | false | 2,043 | java | package ru.mygame.base;
import com.badlogic.gdx.audio.Sound;
import com.badlogic.gdx.graphics.g2d.TextureRegion;
import com.badlogic.gdx.math.Vector2;
public abstract class EnemySettingsDto {
private TextureRegion[] regions;
private Vector2 v0;
private TextureRegion bulletRegion;
private float bulletHeight;
private Vector2 bulletV;
private Sound bulletSound;
private int damage;
private float reloadInterval;
private float height;
private int hp;
public TextureRegion[] getRegions() {
return regions;
}
public void setRegions(TextureRegion[] regions) {
this.regions = regions;
}
public Vector2 getV0() {
return v0;
}
public void setV0(Vector2 v0) {
this.v0 = v0;
}
public TextureRegion getBulletRegion() {
return bulletRegion;
}
public void setBulletRegion(TextureRegion bulletRegion) {
this.bulletRegion = bulletRegion;
}
public float getBulletHeight() {
return bulletHeight;
}
public void setBulletHeight(float bulletHeight) {
this.bulletHeight = bulletHeight;
}
public Vector2 getBulletV() {
return bulletV;
}
public void setBulletV(Vector2 bulletV) {
this.bulletV = bulletV;
}
public Sound getBulletSound() {
return bulletSound;
}
public void setBulletSound(Sound bulletSound) {
this.bulletSound = bulletSound;
}
public int getDamage() {
return damage;
}
public void setDamage(int damage) {
this.damage = damage;
}
public float getReloadInterval() {
return reloadInterval;
}
public void setReloadInterval(float reloadInterval) {
this.reloadInterval = reloadInterval;
}
public float getHeight() {
return height;
}
public void setHeight(float height) {
this.height = height;
}
public int getHp() {
return hp;
}
public void setHp(int hp) {
this.hp = hp;
}
} | [
"35284499+Johnny2825@users.noreply.github.com"
] | 35284499+Johnny2825@users.noreply.github.com |
4ddbb91e2b5699ac8a157fe9f5b528b1288f9677 | 4fe68fba1f9bd631f13e04a4da3fa3c439849b81 | /app/src/main/java/in/djtrinity/www/newapp/SimpleDividerItemDecoration.java | be6a32a26d1bf3eeb79e82bf7401ef2f22acd13a | [
"Apache-2.0"
] | permissive | Ronak-59/Trinity-App | 6cf301be0e1078dc1cd07505340c573e3f5b4729 | a5b7c8f32d3c274b8572e317903ded045f0564dc | refs/heads/master | 2021-01-23T04:08:38.918116 | 2017-03-26T04:19:46 | 2017-03-26T04:19:46 | 86,152,869 | 6 | 3 | null | null | null | null | UTF-8 | Java | false | false | 1,158 | java | package in.djtrinity.www.newapp;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.drawable.Drawable;
import android.support.v7.widget.RecyclerView;
import android.view.View;
public class SimpleDividerItemDecoration extends RecyclerView.ItemDecoration {
private Drawable mDivider;
public SimpleDividerItemDecoration(Context context) {
mDivider = context.getResources().getDrawable(R.drawable.line_divider);
}
@Override
public void onDrawOver(Canvas c, RecyclerView parent, RecyclerView.State state) {
int left = parent.getPaddingLeft();
int right = parent.getWidth() - parent.getPaddingRight();
int childCount = parent.getChildCount();
for (int i = 0; i < childCount; i++) {
View child = parent.getChildAt(i);
RecyclerView.LayoutParams params = (RecyclerView.LayoutParams) child.getLayoutParams();
int top = child.getBottom() + params.bottomMargin;
int bottom = top + mDivider.getIntrinsicHeight();
mDivider.setBounds(left, top, right, bottom);
mDivider.draw(c);
}
}
} | [
"ronak01doshi@gmail.com"
] | ronak01doshi@gmail.com |
4762996c87fd15be853cb504309062f5818434fb | 8922e51e7b544b069ff163496780aa8b37ad4f8a | /framework/src/java/org/apache/hivemind/definition/ContributionDefinition.java | fed7e0f6ac4d2c89432e969bb88324c6d8d6f7b0 | [
"Apache-2.0"
] | permissive | rsassi/hivemind2 | e44cd3b7634bf15180c68c20a3a4f6fa51c21dd0 | 2ab77f62bf2ecbea4e3e03f6bde525a90e3f1a08 | refs/heads/master | 2023-06-28T09:19:39.745800 | 2021-07-25T03:45:03 | 2021-07-25T03:45:03 | 389,251,042 | 0 | 0 | null | 2021-07-25T03:45:04 | 2021-07-25T03:26:24 | Java | UTF-8 | Java | false | false | 1,275 | java | // Copyright 2007 The Apache Software Foundation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package org.apache.hivemind.definition;
/**
* Defines a contribution to a {@link ConfigurationPointDefinition}.
* The actual contribution is done by an instance of {@link Contribution}.
*
* @author Huegen
*/
public interface ContributionDefinition extends ExtensionDefinition
{
/**
* @return the contribution implementation.
*/
public Contribution getContribution();
/**
* @return true if the contribution is the initial one to be processed first. Only one
* contribution of a configuration point is allowed to return true here.
*/
public boolean isInitalContribution();
} | [
"ahuegen@localhost"
] | ahuegen@localhost |
18b45ebddc3d8547f54b9f013d0d44757fa817a4 | e4777e5cb19c313f10105b9ffd390437ac0dd354 | /src/main/java/dash/service/TaskService.java | cdc038e703a9e9d122ad41234eb0ee45db8b676b | [] | no_license | DataAnalyticsinStudentHands/CommunityHealthWorkersBackend | 81a1ab6e546bb9573e2f931ed6864741a3b0233d | 177818c3a6551542d91b1cd729eeab8ca23e01e8 | refs/heads/master | 2020-06-04T03:38:23.179026 | 2015-08-05T15:20:51 | 2015-08-05T15:20:51 | 25,388,592 | 0 | 2 | null | null | null | null | UTF-8 | Java | false | false | 4,569 | java | package dash.service;
import java.util.List;
import org.springframework.security.access.prepost.PostFilter;
import org.springframework.security.access.prepost.PreAuthorize;
import dash.errorhandling.AppException;
import dash.pojo.Group;
import dash.pojo.Task;
import dash.pojo.User;
public interface TaskService {
/*
* ******************** Create related methods **********************
*
*Create a new task and set the current user as owner and manager.
*/
@PreAuthorize("hasPermission(#group, 'member') or hasPermission(#group, 'MANAGER') or hasRole('ROLE_MODERATOR')")
public Long createTask(Task task, Group group) throws AppException;
/*
* Create multiple tasks as ROOT, testing purposes only.
*/
@PreAuthorize("hasRole('ROLE_ROOT')")
public void createTasks(List<Task> tasks) throws AppException;
/*
* ******************* Read related methods ********************
*/
/**
*
* @param orderByInsertionDate
* - if set, it represents the order by criteria (ASC or DESC)
* for displaying tasks
* @param numberDaysToLookBack
* - if set, it represents number of days to look back for tasks,
* null
* @param group
* - the group of by which to search for tasks
* @return list with tasks corresponding to search criteria
* @throws AppException
*/
public List<Task> getTasks(String orderByInsertionDate,
Integer numberDaysToLookBack) throws AppException;
@PostFilter("hasPermission(filterObject, 'MEMBER')")
public List<Task> getTasksByMembership(String orderByInsertionDate,
Integer numberDaysToLookBack) throws AppException;
@PostFilter("hasPermission(filterObject, 'Manager')")
public List<Task> getTasksByManager(String orderByInsertionDate,
Integer numberDaysToLookBack) throws AppException;
public List<Task> getTasksByGroup( Group group) throws AppException;
/**
* Returns a task given its id
*
* @param id
* @return
* @throws AppException
*/
public Task getTaskById(Long id) throws AppException;
/*
* ******************** Update related methods **********************
*/
@PreAuthorize("hasPermission(#task, 'MANAGER') or hasPermission(#group, 'manager') "
+ "or hasRole('ROLE_MODERATOR')")
public void updateFullyTask(Task task, Group group) throws AppException;
@PreAuthorize("hasPermission(#task, 'MANAGER') or hasPermission(#group, 'manager') "
+ "or hasRole('ROLE_MODERATOR')")
public void updatePartiallyTask(Task task, Group group) throws AppException;
/*
* ******************** Delete related methods **********************
*/
@PreAuthorize("hasPermission(#task, 'MANAGER') or hasPermission(#group, 'manager') "
+ "or hasRole('ROLE_MODERATOR')")
public void deleteTask(Task task, Group group) throws AppException;
/** removes all tasks
* DO NOT USE, IMPROPERLY UPDATES ACL_OBJECT table
* Functional but does not destroy old acl's which doesnt hurt anything
* but they will take up space if this is commonly used */
@PreAuthorize("hasRole('ROLE_ROOT')")
public void deleteTasks();
/**
* ******************* ACL related methods ****************************
* TODO: Rework permissions for
*/
// Adds an additional manager to the task
@PreAuthorize("hasPermission(#task, 'MANAGER') or hasPermission(#group, 'manager') "
+ "or hasRole('ROLE_ADMIN')")
public void addManager(User user, Task task, Group group) throws AppException;
//Removes all managers and sets new manager to user
@PreAuthorize("hasRole('ROLE_MODERATOR')")
public void resetManager(User user, Task task) throws AppException;
//Removes a single manager from a task
@PreAuthorize("hasPermission(#user, 'WRITE') or hasPermission(#group, 'manager') "
+ "or hasRole('ROLE_MODERATOR')")
public void deleteManager(User user, Task task, Group group) throws AppException;
//Adds a member to the task
@PreAuthorize("hasRole('ROLE_USER')")
public void addMember(User user, Task task) throws AppException;
//Removes member
@PreAuthorize("hasPermission(#user, 'WRITE') or hasPermission(#group, 'manager') "
+ "or hasRole('ROLE_MODERATOR') or hasPermission(#task, 'MANAGER')")
public void deleteMember(User user, Task task, Group group) throws AppException;
/*
* ******************** Helper methods **********************
*/
// TODO: This also should not exist, or it should be changed to
// private/protected. Redundant
// Could be made a boolean so it was not a security vulnerability
public Task verifyTaskExistenceById(Long id);
public int getNumberOfTasks();
}
| [
"tyler.swensen@gmail.com"
] | tyler.swensen@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.