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
9ff39e54003dea1607d6d1accec392820d417c3e
2243964795cfea24b1dfa5b1751d0f404e54117e
/src/main/java/nl/tudelft/ewi/devhub/server/backend/warnings/SuccessiveBuildFailureGenerator.java
a79016d8a117f983c7bfffca9209c8e2a8c28d8b
[]
no_license
aaronang/devhub
e09b08ee80988e2b6d9a2614208b38e95bce666f
8354bf0572a56e0f6e32d8eed035f5b7d13dcf38
refs/heads/master
2020-04-06T06:52:07.545516
2015-06-15T10:35:33
2015-06-15T10:35:33
37,659,874
0
0
null
2015-06-18T13:04:12
2015-06-18T13:04:12
null
UTF-8
Java
false
false
2,142
java
package nl.tudelft.ewi.devhub.server.backend.warnings; import com.google.common.collect.Lists; import com.google.inject.Inject; import nl.tudelft.ewi.devhub.server.database.controllers.BuildResults; import nl.tudelft.ewi.devhub.server.database.entities.BuildResult; import nl.tudelft.ewi.devhub.server.database.entities.Commit; import nl.tudelft.ewi.devhub.server.database.entities.warnings.SuccessiveBuildFailure; import nl.tudelft.ewi.git.client.GitServerClient; import java.util.Collection; import java.util.Collections; import java.util.Map; import java.util.Set; import java.util.stream.Collectors; /** * The {@code SuccessiveBuildFailureGenerator} is triggered when a {@link BuildResult} is retrieved. * It generates a {@link SuccessiveBuildFailure} when the built commit is a successive build failure. * * @author Jan-Willem Gmelig Meyling */ public class SuccessiveBuildFailureGenerator extends AbstractCommitWarningGenerator<SuccessiveBuildFailure, BuildResult> { private final BuildResults buildResults; @Inject public SuccessiveBuildFailureGenerator(GitServerClient gitServerClient, BuildResults buildResults) { super(gitServerClient); this.buildResults = buildResults; } @Override public Set<SuccessiveBuildFailure> generateWarnings(Commit commit, BuildResult attachment) { if(!attachment.hasFailed()) { return Collections.emptySet(); } Collection<String> commitIds = Lists.newArrayList(getGitCommit(commit).getParents()); Map<?, BuildResult> builds = buildResults.findBuildResults(commit.getRepository(), commitIds); return mapToWarnings(commit, builds); } protected Set<SuccessiveBuildFailure> mapToWarnings(Commit commit, Map<?, BuildResult> builds) { return builds.values().stream() .filter(BuildResult::hasFailed) .limit(1) .map(buildFailure -> { SuccessiveBuildFailure warning = new SuccessiveBuildFailure(); warning.setCommit(commit); return warning; }) .collect(Collectors.toSet()); } }
[ "j.gmeligmeyling@student.tudelft.nl" ]
j.gmeligmeyling@student.tudelft.nl
c4b9773b83caa2217bf6987a8ee0273226e5009a
8dccfea0013c40357a4214949d981cdca6d25f76
/basc_code/day02/src/cn/zdq/day02/demo01/DemoRandom.java
d3dcef70b16259cacac8fd43af35b56193f9bdf7
[ "MIT" ]
permissive
zdq1179169386/JavaStudy
e48e659feb636d71c25bbcb499107d40908c0dac
1f97b06b62046e3ca897453916c9d6215015dc64
refs/heads/master
2021-03-29T00:42:17.138079
2020-12-31T13:22:21
2020-12-31T13:22:21
247,909,094
0
0
null
null
null
null
UTF-8
Java
false
false
422
java
package cn.zdq.day02.demo01; import java.util.Random; public class DemoRandom { public static void main(String[] args) { //随机数 for (int i = 0; i < 10; i++) { Random random = new Random(); int a = random.nextInt(10);//0 - 9 System.out.println(a); } Random random = new Random(); int b = random.nextInt(51) + 100; // 100 - 150 } }
[ "2259434901@qq.com" ]
2259434901@qq.com
0d4b176896fcb326e4cc0e169995b4f5035d4231
cfb54a1cf32729fe11eef95ceffef3ce056a7b5f
/app/src/main/java/com/ayoprez/castro/repository/EventsRepositoryImpl.java
2ae84da009a425792bea10fc0a356fc24e619d9d
[]
no_license
AyoPrez/NotificationApp
eca10122210791ed4bb8654106a7612742befd38
9661226cbb540e3e6e026ea7edcb7920736e3b0a
refs/heads/master
2020-05-21T23:57:06.826734
2016-10-05T17:17:58
2016-10-05T17:17:58
64,783,555
0
0
null
null
null
null
UTF-8
Java
false
false
3,275
java
package com.ayoprez.castro.repository; import com.ayoprez.castro.common.TimeUtils; import com.ayoprez.castro.models.EventItem; import com.ayoprez.castro.models.EventItemMeta; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Calendar; import java.util.Date; import java.util.Locale; import io.realm.Realm; import io.realm.RealmResults; /** * Created by ayo on 26.06.16. */ public class EventsRepositoryImpl implements EventsRepository{ private Realm eventRealm; private int lastId; public EventsRepositoryImpl(){ eventRealm = Realm.getDefaultInstance(); } @Override public EventItem getEvent(int id) { return eventRealm.where(EventItem.class).equalTo("id", id).findFirst(); } @Override public ArrayList<EventItem> getAllEvents() { return new ArrayList<>(eventRealm.where(EventItem.class).findAll()); } @Override public int getEventIdByPosition(int position) { return getAllEvents().get(position).getId(); } @Override public EventItem getEventByPosition(int position) { return getAllEvents().get(position); } @Override public void saveEvents(final ArrayList<EventItem> events) { EventItem eventItem; EventItemMeta eventItemMeta; TimeUtils timeUtils = new TimeUtils(); Realm eventRealm = Realm.getDefaultInstance(); for(EventItem event : events) { if(timeUtils.isFutureDate(event.getMeta().getDate(), event.getMeta().getTime())) { eventRealm.beginTransaction(); eventItem = new EventItem(); eventItem.setId(event.getId() + getLastId()); eventItem.setTitle(event.getTitle()); eventItemMeta = new EventItemMeta(); eventItemMeta.setImage(event.getMeta().getImage()); eventItemMeta.setDescription(event.getMeta().getDescription()); eventItemMeta.setDate(event.getMeta().getDate()); eventItemMeta.setPrice(event.getMeta().getPrice()); eventItemMeta.setSubtitle(event.getMeta().getSubtitle()); eventItemMeta.setTime(event.getMeta().getTime()); eventItem.setMeta(eventItemMeta); EventItemMeta itemMeta = eventRealm.copyToRealm(eventItemMeta); EventItem itemTable = eventRealm.copyToRealm(eventItem); eventRealm.commitTransaction(); } } eventRealm.close(); } @Override public void deleteAllEvents() { Realm.getDefaultInstance().executeTransaction(new Realm.Transaction() { @Override public void execute(Realm realm) { RealmResults<EventItem> result = realm.where(EventItem.class).findAll(); RealmResults<EventItemMeta> metaResult = realm.where(EventItemMeta.class).findAll(); result.deleteAllFromRealm(); metaResult.deleteAllFromRealm(); } }); Realm.getDefaultInstance().close(); } private int getLastId(){ return lastId++; } @Override public void closeRealm() { eventRealm.close(); } }
[ "arezrod_16@hotmail.com" ]
arezrod_16@hotmail.com
9b01bda5e1539c4b2f956b7c6075c284598d80ff
6392e92d1624b72fa7c73c4175564b7081c3376c
/fileTemplates/includes/File Header.java
3915b792795a3f13df7154bd470941a7d2786151
[]
no_license
P79N6A/idea-settings-1
887b281532ed4a9a0589e206143796cc503c109b
89007f25a43f38b8fed2bc1204a5e7ba31ef4fff
refs/heads/master
2020-04-19T15:27:29.074171
2019-01-30T03:42:44
2019-01-30T03:42:44
null
0
0
null
null
null
null
UTF-8
Java
false
false
50
java
/** * * @author yukun.gyk * @date ${DATE} */
[ "yukun.gyk@alibaba-inc.com" ]
yukun.gyk@alibaba-inc.com
be93055539da231185119d22322d1ea0f60e306f
a1ab150ea1e236bf520843050b6f95a7930300e1
/src/main/java/com/scaleunlimited/atomizer/flow/AtomizerCounters.java
513a674d6c945283347ddea8c6ad95e0a2675fda
[]
no_license
ScaleUnlimited/atomizer
f86a9cd6cfee6b09905f1881cbab80441948d4f5
a2827a7e5d91efa3d0c1ccc71875b3091cc989c8
refs/heads/master
2021-01-10T19:09:19.923116
2013-01-08T02:18:19
2013-01-08T02:18:19
null
0
0
null
null
null
null
UTF-8
Java
false
false
242
java
package com.scaleunlimited.atomizer.flow; public enum AtomizerCounters { // Denature TOTAL_ANCHORS, NO_ANCHORS, //Atomize TOTAL_ATOMIZE, // AllAtoms ALL_ATOMS, // Knot TOTAL_KNOTS }
[ "vivek@O3.local" ]
vivek@O3.local
38311786a888f260fa93bc101dfdf4e5a0a1294e
ab91edf364c66071c0ec5777595033fc8cde8113
/panda-nets/src/test/java/panda/net/examples/nntp/PostMessage.java
5f0949ea0f7fbd52bdf3f0494b058ca1fa62ec29
[ "Apache-2.0" ]
permissive
pandafw/panda
054a5262cb006382ca22858925329a928fec844b
5ab4c335dae0dba34995f13863f11be790b14548
refs/heads/master
2023-08-31T03:40:26.800171
2023-08-29T08:11:50
2023-08-29T08:11:50
78,275,890
10
1
Apache-2.0
2022-11-08T11:20:35
2017-01-07T11:47:02
Java
UTF-8
Java
false
false
3,274
java
package panda.net.examples.nntp; import java.io.BufferedReader; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.PrintWriter; import java.io.Writer; import panda.net.PrintCommandListener; import panda.net.io.Util; import panda.net.nntp.NNTPClient; import panda.net.nntp.NNTPReply; import panda.net.nntp.SimpleNNTPHeader; /*** * This is an example program using the NNTP package to post an article to the specified * newsgroup(s). It prompts you for header information and a filename to post. ***/ public final class PostMessage { public static void main(String[] args) { String from, subject, newsgroup, filename, server, organization; String references; BufferedReader stdin; FileReader fileReader = null; SimpleNNTPHeader header; NNTPClient client; if (args.length < 1) { System.err.println("Usage: post newsserver"); System.exit(1); } server = args[0]; stdin = new BufferedReader(new InputStreamReader(System.in)); try { System.out.print("From: "); System.out.flush(); from = stdin.readLine(); System.out.print("Subject: "); System.out.flush(); subject = stdin.readLine(); header = new SimpleNNTPHeader(from, subject); System.out.print("Newsgroup: "); System.out.flush(); newsgroup = stdin.readLine(); header.addNewsgroup(newsgroup); while (true) { System.out.print("Additional Newsgroup <Hit enter to end>: "); System.out.flush(); // Of course you don't want to do this because readLine() may be null newsgroup = stdin.readLine().trim(); if (newsgroup.length() == 0) { break; } header.addNewsgroup(newsgroup); } System.out.print("Organization: "); System.out.flush(); organization = stdin.readLine(); System.out.print("References: "); System.out.flush(); references = stdin.readLine(); if (organization != null && organization.length() > 0) { header.addHeaderField("Organization", organization); } if (references != null && references.length() > 0) { header.addHeaderField("References", references); } header.addHeaderField("X-Newsreader", "NetComponents"); System.out.print("Filename: "); System.out.flush(); filename = stdin.readLine(); try { fileReader = new FileReader(filename); } catch (FileNotFoundException e) { System.err.println("File not found. " + e.getMessage()); System.exit(1); } client = new NNTPClient(); client.addProtocolCommandListener(new PrintCommandListener(new PrintWriter(System.out), true)); client.connect(server); if (!NNTPReply.isPositiveCompletion(client.getReplyCode())) { client.disconnect(); System.err.println("NNTP server refused connection."); System.exit(1); } if (client.isAllowedToPost()) { Writer writer = client.postArticle(); if (writer != null) { writer.write(header.toString()); Util.copyReader(fileReader, writer); writer.close(); client.completePendingCommand(); } } if (fileReader != null) { fileReader.close(); } client.logout(); client.disconnect(); } catch (IOException e) { e.printStackTrace(); System.exit(1); } } }
[ "yf.frank.wang@outlook.com" ]
yf.frank.wang@outlook.com
0f77dbf8990f84b4338d67b5528f14ac3fcb3d43
56c4e3b71d2310bef350d2a1eecc45e528ed8b84
/patch/misuse66/randoopTest/RegressionTest0.java
fc6f19834050a465415d33a2326dc4324574cdd9
[ "MIT" ]
permissive
themaplelab/cryptoapi-bench
db4be05b92ec2b59b8396945754a0177ed41ff2d
a681a6303bb8dfa80e25f89a4d70e90e662ffb77
refs/heads/master
2023-02-20T21:58:52.613515
2020-11-25T01:32:59
2020-11-25T01:32:59
270,456,405
0
0
null
2020-06-07T23:01:26
2020-06-07T23:01:25
null
UTF-8
Java
false
false
244,656
java
package randoopTest; import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class RegressionTest0 { public static boolean debug = false; @Test public void test001() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test001"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); java.lang.Class<?> wildcardClass1 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass1); } @Test public void test002() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test002"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass3 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass3); } @Test public void test003() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test003"); java.lang.Object obj0 = new java.lang.Object(); java.lang.Class<?> wildcardClass1 = obj0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass1); } @Test public void test004() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test004"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass5 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass5); } @Test public void test005() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test005"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass2 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass2); } @Test public void test006() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test006"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass8 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass8); } @Test public void test007() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test007"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass6 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass6); } @Test public void test008() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test008"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass7 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass7); } @Test public void test009() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test009"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass4 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass4); } @Test public void test010() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test010"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass9 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass9); } @Test public void test011() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test011"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass10 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass10); } @Test public void test012() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test012"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass11 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass11); } @Test public void test013() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test013"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass12 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass12); } @Test public void test014() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test014"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass13 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass13); } @Test public void test015() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test015"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass14 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass14); } @Test public void test016() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test016"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass16 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass16); } @Test public void test017() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test017"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass15 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass15); } @Test public void test018() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test018"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass17 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass17); } @Test public void test019() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test019"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass19 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass19); } @Test public void test020() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test020"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass20 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass20); } @Test public void test021() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test021"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass18 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass18); } @Test public void test022() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test022"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass21 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass21); } @Test public void test023() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test023"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass23 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass23); } @Test public void test024() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test024"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass22 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass22); } @Test public void test025() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test025"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass25 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass25); } @Test public void test026() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test026"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass24 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass24); } @Test public void test027() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test027"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass27 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass27); } @Test public void test028() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test028"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass26 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass26); } @Test public void test029() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test029"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass28 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass28); } @Test public void test030() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test030"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass30 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass30); } @Test public void test031() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test031"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass29 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass29); } @Test public void test032() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test032"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass33 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass33); } @Test public void test033() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test033"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass31 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass31); } @Test public void test034() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test034"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass32 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass32); } @Test public void test035() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test035"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass35 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass35); } @Test public void test036() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test036"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass34 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass34); } @Test public void test037() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test037"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass36 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass36); } @Test public void test038() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test038"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass37 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass37); } @Test public void test039() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test039"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass38 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass38); } @Test public void test040() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test040"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass41 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass41); } @Test public void test041() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test041"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass40 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass40); } @Test public void test042() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test042"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass39 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass39); } @Test public void test043() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test043"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass42 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass42); } @Test public void test044() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test044"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass43 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass43); } @Test public void test045() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test045"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass44 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass44); } @Test public void test046() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test046"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass45 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass45); } @Test public void test047() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test047"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass46 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass46); } @Test public void test048() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test048"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass47 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass47); } @Test public void test049() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test049"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass49 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass49); } @Test public void test050() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test050"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass50 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass50); } @Test public void test051() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test051"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass48 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass48); } @Test public void test052() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test052"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass51 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass51); } @Test public void test053() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test053"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass53 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass53); } @Test public void test054() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test054"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass52 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass52); } @Test public void test055() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test055"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass56 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass56); } @Test public void test056() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test056"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass55 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass55); } @Test public void test057() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test057"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass58 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass58); } @Test public void test058() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test058"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass54 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass54); } @Test public void test059() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test059"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass57 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass57); } @Test public void test060() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test060"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass60 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass60); } @Test public void test061() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test061"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass59 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass59); } @Test public void test062() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test062"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass61 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass61); } @Test public void test063() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test063"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass62 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass62); } @Test public void test064() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test064"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass63 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass63); } @Test public void test065() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test065"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass64 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass64); } @Test public void test066() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test066"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass65 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass65); } @Test public void test067() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test067"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass66 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass66); } @Test public void test068() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test068"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass68 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass68); } @Test public void test069() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test069"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass67 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass67); } @Test public void test070() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test070"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass69 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass69); } @Test public void test071() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test071"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass70 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass70); } @Test public void test072() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test072"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass74 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass74); } @Test public void test073() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test073"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass73 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass73); } @Test public void test074() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test074"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass72 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass72); } @Test public void test075() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test075"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass71 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass71); } @Test public void test076() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test076"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass75 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass75); } @Test public void test077() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test077"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass77 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass77); } @Test public void test078() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test078"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass78 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass78); } @Test public void test079() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test079"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass76 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass76); } @Test public void test080() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test080"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass79 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass79); } @Test public void test081() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test081"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass80 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass80); } @Test public void test082() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test082"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass81 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass81); } @Test public void test083() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test083"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass82 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass82); } @Test public void test084() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test084"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass83 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass83); } @Test public void test085() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test085"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass86 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass86); } @Test public void test086() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test086"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass85 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass85); } @Test public void test087() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test087"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass84 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass84); } @Test public void test088() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test088"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass87 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass87); } @Test public void test089() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test089"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass88 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass88); } @Test public void test090() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test090"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass89 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass89); } @Test public void test091() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test091"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass90 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass90); } @Test public void test092() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test092"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass91 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass91); } @Test public void test093() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test093"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass92 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass92); } @Test public void test094() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test094"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass94 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass94); } @Test public void test095() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test095"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass95 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass95); } @Test public void test096() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test096"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass93 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass93); } @Test public void test097() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test097"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass96 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass96); } @Test public void test098() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test098"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass98 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass98); } @Test public void test099() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test099"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass97 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass97); } @Test public void test100() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test100"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); } @Test public void test101() throws Throwable { if (debug) System.out.format("%n%s%n", "RegressionTest0.test101"); org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1 ecbInSymmCryptoBBCase1_0 = new org.cryptoapi.bench.ecbcrypto.EcbInSymmCryptoBBCase1(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); ecbInSymmCryptoBBCase1_0.go(); java.lang.Class<?> wildcardClass99 = ecbInSymmCryptoBBCase1_0.getClass(); // Regression assertion (captures the current behavior of the code) org.junit.Assert.assertNotNull(wildcardClass99); } }
[ "knewbury@ualberta.ca" ]
knewbury@ualberta.ca
6aa605156f078c0f8a2c8c2dce087bd4a18373da
6c1f17422450ed689a7e3d12e95ec6e0dd7cf789
/StreamTwitterToKafka/src/main/java/JsonUtils.java
9c66bddd7c6cb67cac48212baf5652afd26b6503
[]
no_license
royassis/TwitterToElastic
2404c08317e7acbde0b539c126328fd24dcea9f2
90b5b79ef443ba4548f4d9f61e871cff962f0204
refs/heads/master
2023-06-16T21:16:49.860188
2021-07-10T15:11:06
2021-07-10T15:11:06
384,628,689
0
0
null
null
null
null
UTF-8
Java
false
false
519
java
import org.json.simple.JSONObject; import org.json.simple.parser.JSONParser; import java.io.FileReader; public class JsonUtils { static final JSONObject getJsonFromFile(String filePath) { JSONParser parser = new JSONParser(); JSONObject jsonObject = null; try { Object obj = parser.parse(new FileReader(filePath)); jsonObject = (JSONObject) obj; } catch (Exception e) { e.printStackTrace(); } return jsonObject; } }
[ "royassisg@gmail.com" ]
royassisg@gmail.com
884a3ea192cb95eef12c4d2e567b7fcc6c1c4f1c
72ab4e5c7a4383a506920f4feb9c526fd3c3f472
/DeviceConnectCodegen/modules/deviceconnect-codegen/src/main/java/org/deviceconnect/codegen/ValidationResultSet.java
3f16b2f115d52af0d9f00c3a42a3973f70931433
[ "MIT" ]
permissive
Sourabh-Pandit/DeviceConnect-Experiments
98a25cdfe98a1e207a837d42c32a733886ae2f09
ee399a2ef14bbc51128d50d40452cb62eb45c8d3
refs/heads/master
2021-04-26T22:11:08.503023
2018-02-26T09:30:21
2018-02-26T09:30:21
null
0
0
null
null
null
null
UTF-8
Java
false
false
636
java
package org.deviceconnect.codegen; import java.util.HashMap; import java.util.Map; public class ValidationResultSet { private final Map<String, ValidationResult> resultMap = new HashMap<>(); public void addResult(final ValidationResult result) { resultMap.put(result.getParamName(), result); } public boolean isValid() { for (ValidationResult result : resultMap.values()) { if (!result.isValid()) { return false; } } return true; } public Map<String, ValidationResult> getResults() { return new HashMap<>(resultMap); } }
[ "mtaka@gclue.jp" ]
mtaka@gclue.jp
7b68277fe3822f0418de7385bfb3ee6fc09dc74b
147b21549ba4ba266cfb8fcf749d8445a13ad7f3
/WorkoutApplication/app/src/main/java/com/example/plmntnsv/workoutapplication/ExercisesList/ExercisesListAdapter.java
cb46ab6d066ce223fed56d9c7e1339c93e75e42b
[]
no_license
plmntnsv/workout-app-android
bcba0b1e21edfacd6906db6e68486f36d5d09edb
aaa274dde61cebc1714055f9543685567d032ed5
refs/heads/master
2021-07-10T06:35:58.668382
2017-10-11T23:58:14
2017-10-11T23:58:14
106,116,057
0
0
null
null
null
null
UTF-8
Java
false
false
2,103
java
package com.example.plmntnsv.workoutapplication.ExercisesList; import android.content.Context; import android.support.annotation.NonNull; import android.support.annotation.Nullable; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ArrayAdapter; import android.widget.LinearLayout; import android.widget.ListView; import android.widget.TextView; import com.example.plmntnsv.workoutapplication.Models.Exercise.Exercise; import com.example.plmntnsv.workoutapplication.R; import java.util.ArrayList; import java.util.List; /** * Created by Plmn Tnsv on 12-Oct-17. */ public class ExercisesListAdapter { private final View mView; private final ArrayList<Exercise> mExercises; private ArrayAdapter<Exercise> mExercisesAdapter; private ListView mListViewExercises; public ExercisesListAdapter(View view, ArrayList<Exercise> exercises){ mView = view; mExercises = exercises; this.setAdapter(); } void setAdapter(){ mExercisesAdapter = new ArrayAdapter<Exercise>(mView.getContext(), -1, mExercises) { @NonNull @Override public View getView(int position, @Nullable View convertView, @NonNull ViewGroup parent) { View view = convertView; if (convertView == null) { LayoutInflater inflater = LayoutInflater.from(mView.getContext());; view = inflater.inflate(R.layout.exercise_layout, parent, false); } TextView tvExName = view.findViewById(R.id.tv_ex_name); String name = this.getItem(position).getName(); tvExName.setText(name); TextView tvExDesc = view.findViewById(R.id.tv_ex_desc); String desc = this.getItem(position).getDescription(); tvExDesc.setText(desc); return view; } }; mListViewExercises = mView.findViewById(R.id.lv_exercises); mListViewExercises.setAdapter(mExercisesAdapter); } }
[ "plamen.atanasov91@gmail.com" ]
plamen.atanasov91@gmail.com
610073262868ca7615225f5360ccef3e915452b7
981fb328d0cc8d215498965a66084e7afe93b34a
/testApp/src/main/java/eltos/simpledialogfragments/FlatFragmentActivity.java
9885d104ceb259c89fe2a376f7764b22f16f03ff
[ "Apache-2.0" ]
permissive
MyExpenses/SimpleDialogFragments
caef09018e9da880c49f341293b24ab38aae765c
5757c7c6895c0edeb8335684c6cc4aaa91050a31
refs/heads/master
2020-03-08T04:44:10.060772
2018-03-29T13:19:38
2018-03-29T13:19:38
127,930,075
0
0
Apache-2.0
2018-04-03T15:34:15
2018-04-03T15:34:14
null
UTF-8
Java
false
false
4,399
java
/* * Copyright 2017 Philipp Niedermayer (github.com/eltos) * * 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 eltos.simpledialogfragments; import android.graphics.Color; import android.graphics.drawable.ColorDrawable; import android.os.Build; import android.support.annotation.ColorInt; import android.support.annotation.NonNull; import android.support.v4.app.FragmentManager; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.text.Spannable; import android.text.SpannableString; import android.text.style.ForegroundColorSpan; import android.view.View; import android.widget.Toast; import eltos.simpledialogfragment.SimpleDialog; import eltos.simpledialogfragment.color.SimpleColorDialog; public class FlatFragmentActivity extends AppCompatActivity implements SimpleDialog.OnDialogResultListener { private static final String COLOR_FRAGMENT = "color_fragment"; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_flat_fragment); /** * This example shows how one could re-use the views from a dialog * in an activity, using a wrapper class like {@link FlatColorFragment} * */ FragmentManager fragmentManager = getSupportFragmentManager(); final FlatColorFragment fragment; if (savedInstanceState == null){ // instantiate and configure properties fragment = new FlatColorFragment(); fragment.allowCustom(true); fragment.colorPreset(0xFFCF4747); fragmentManager.beginTransaction().add(R.id.frame, fragment, COLOR_FRAGMENT).commit(); } else { fragment = (FlatColorFragment) fragmentManager.findFragmentByTag(COLOR_FRAGMENT); } // call result listener findViewById(R.id.ok).setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { fragment.callResultListener(); } }); } // == R E S U L T S == /** * Let the hosting fragment or activity implement this interface * to receive results from the dialog * * @param dialogTag the tag passed to {@link SimpleDialog#show} * @param which result type, one of {@link #BUTTON_POSITIVE}, {@link #BUTTON_NEGATIVE}, * {@link #BUTTON_NEUTRAL} or {@link #CANCELED} * @param extras the extras passed to {@link SimpleDialog#extra(Bundle)} * @return true if the result was handled, false otherwise */ @Override public boolean onResult(@NonNull String dialogTag, int which, @NonNull Bundle extras) { // handle results as usual if (COLOR_FRAGMENT.equals(dialogTag) && which == BUTTON_POSITIVE) { @ColorInt int color = extras.getInt(SimpleColorDialog.COLOR); // Sets action bar colors if (getSupportActionBar() != null) { getSupportActionBar().setBackgroundDrawable(new ColorDrawable(0xFF000000 | color)); boolean dark = Color.red(color) * 0.299 + Color.green(color) * 0.587 + Color.blue(color) * 0.114 < 180; SpannableString s = new SpannableString(getSupportActionBar().getTitle()); s.setSpan(new ForegroundColorSpan(dark ? Color.WHITE : Color.BLACK), 0, s.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); getSupportActionBar().setTitle(s); } if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { float[] hsv = new float[3]; Color.colorToHSV(color, hsv); hsv[2] *= 0.75; getWindow().setStatusBarColor(Color.HSVToColor(hsv)); } return true; } return false; } }
[ "eltos@outlook.de" ]
eltos@outlook.de
df40928f68eaadb4adef8940f3ae4e93f1567c1e
7d53eafc0a89446c0af364903e5019f0ac3a0d1b
/src/main/java/dmillerw/circuit/network/packet/core/BasePacket.java
06b1ac64f8bc99d105aba3da9dd9790db969fbd1
[]
no_license
dmillerw/WiresAndCircuits_OLD
2a22f20e0e736942979594673c76c3dc574f0304
56dc829d55ad28178769c9206b7229306db550cf
refs/heads/master
2021-01-24T14:55:44.468639
2015-07-21T19:21:57
2015-07-21T19:21:57
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,119
java
package dmillerw.circuit.network.packet.core; import cpw.mods.fml.common.network.NetworkRegistry; import cpw.mods.fml.common.network.simpleimpl.IMessage; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import dmillerw.circuit.network.PacketHandler; import io.netty.buffer.ByteBuf; import net.minecraft.entity.player.EntityPlayerMP; /** * @author dmillerw */ public abstract class BasePacket implements IMessage { public abstract void toBytes(ByteBuf buf); public abstract void fromBytes(ByteBuf buf); public void sendToAll() { PacketHandler.INSTANCE.sendToAll(this); } public void sendTo(EntityPlayerMP player) { PacketHandler.INSTANCE.sendTo(this, player); } public void sendToAllAround(NetworkRegistry.TargetPoint point) { PacketHandler.INSTANCE.sendToAllAround(this, point); } public void sendToDimension(int dimensionId) { PacketHandler.INSTANCE.sendToDimension(this, dimensionId); } @SideOnly(Side.CLIENT) public void sendToServer() { PacketHandler.INSTANCE.sendToServer(this); } }
[ "dmillerw@gmail.com" ]
dmillerw@gmail.com
aa98767c57add6038c6e5586c4f460a81b5a42de
61771351954eba2c59140d6841db99e7426d6baa
/src/main/java/com/vobis/discordrpg/commands/handler/ICommand.java
34958ae09e1648a4a03495d6af22fa74fa911f48
[]
no_license
Cl4py/discord-rpg
bff7f29fdc0f4a72bc73433721c94613d9a15b5a
2526f456ea59497d5da166741aa6bc3e2525f860
refs/heads/master
2022-04-28T01:28:04.366311
2020-04-27T15:16:24
2020-04-27T15:16:24
null
0
0
null
null
null
null
UTF-8
Java
false
false
430
java
package com.vobis.discordrpg.commands.handler; import discord4j.core.object.entity.Guild; import discord4j.core.object.entity.Member; import discord4j.core.object.entity.Message; import discord4j.core.object.entity.TextChannel; import reactor.core.publisher.Mono; import java.util.List; public interface ICommand { Mono<?> execute(List<String> args, Message message, Member member, Guild guild, TextChannel textChannel); }
[ "shaunwild97@gmail.com" ]
shaunwild97@gmail.com
bc14d89be234363ee4ea1b89caa1c9cd919b5d9f
82e57abb1b1cd0ee231be5413c95ed6dc5330a71
/app/src/main/java/com/app/WeiXin/Utils.java
91be9b5f6a2cdf6bfd5d123ed9635ee0f5b3fff3
[]
no_license
guyuegeblog/Six_RongMengPay_ThreeSplash_Live_UpVideo
d647f095b94def8371a0a7e28aef94a83851fa48
6e8ae9b94180e285be13c5416b083f60672d006c
refs/heads/master
2021-01-18T15:42:41.053282
2017-04-10T08:55:25
2017-04-10T08:55:25
86,674,693
1
0
null
null
null
null
UTF-8
Java
false
false
1,784
java
package com.app.WeiXin; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.UnsupportedEncodingException; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Date; public class Utils { /** * // 生成订单流水号(日期+随机数) * * @return */ public static String getOutTradeNo() { Date date = new Date(); DateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); String time = format.format(date); String reptime = time.replace("-", " "); System.out.println(reptime.toString()); String reptimes = reptime.replace(":", " "); System.out.println(reptimes.trim().toString()); String reptimetrim = reptimes.replace(" ", "");//去掉后最终结果 System.out.println(reptimetrim); int ran = (int) (Math.random() * 99999 + 1); System.out.println(ran); String orderNum = reptimetrim + ran; return orderNum; } /** * 生成订单流水号(以日期格式) * @return */ @SuppressWarnings("unused") private static String getOutTradeNoTwo() { SimpleDateFormat format = new SimpleDateFormat("MMddHHmmss"); Date date = new Date(); String key = format.format(date); java.util.Random r = new java.util.Random(); key += r.nextInt(); key = key.substring(0, 15); return key; } public static String formatIsToString(InputStream is) throws UnsupportedEncodingException { ByteArrayOutputStream baos = new ByteArrayOutputStream(); byte[] buf = new byte[1024]; int len = -1; try { while( (len=is.read(buf)) != -1){ baos.write(buf, 0, len); } baos.flush(); baos.close(); is.close(); } catch (IOException e) { e.printStackTrace(); } return new String(baos.toByteArray(),"UTF-8"); } }
[ "2219736084@qq.com" ]
2219736084@qq.com
8c8535b8e55b8a33e4023567c305ecd79974cfc9
4512dab035409f0a0700b1208663b3cbc405ecf2
/Project/src/BookStore/Exit.java
80bae6c84fdf8970470141801911a1e29b33b949
[]
no_license
Bidesh15-8550/Book-Store-Using-Java-With-Database
48335d2f0d2e4feefa8eb51e3254ac4f259a8cc5
70792929a9a0b86f8102c86c19b3ca52a6d51c3d
refs/heads/master
2021-01-09T16:22:35.621764
2020-02-22T15:56:03
2020-02-22T15:56:03
null
0
0
null
null
null
null
UTF-8
Java
false
false
5,657
java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package BookStore; import java.awt.Color; /** * * @author RIAJUL */ public class Exit extends javax.swing.JFrame { /** * Creates new form Exit */ public Exit() { initComponents(); getContentPane().setBackground(Color.BLUE); } /** * This method is called from within the constructor to initialize the form. * WARNING: Do NOT modify this code. The content of this method is always * regenerated by the Form Editor. */ @SuppressWarnings("unchecked") // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents private void initComponents() { jLabel1 = new javax.swing.JLabel(); jButton1 = new javax.swing.JButton(); jButton2 = new javax.swing.JButton(); setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); jLabel1.setFont(new java.awt.Font("Tahoma", 1, 18)); // NOI18N jLabel1.setForeground(new java.awt.Color(255, 255, 0)); jLabel1.setText(" Are you want to exit?"); jButton1.setText("Yes"); jButton1.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jButton1ActionPerformed(evt); } }); jButton2.setText("No"); jButton2.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jButton2ActionPerformed(evt); } }); javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); getContentPane().setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addGap(95, 95, 95) .addComponent(jButton1) .addGap(97, 97, 97) .addComponent(jButton2)) .addGroup(layout.createSequentialGroup() .addGap(81, 81, 81) .addComponent(jLabel1))) .addContainerGap(102, Short.MAX_VALUE)) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addGap(83, 83, 83) .addComponent(jLabel1) .addGap(40, 40, 40) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(jButton2) .addComponent(jButton1)) .addContainerGap(132, Short.MAX_VALUE)) ); pack(); }// </editor-fold>//GEN-END:initComponents private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton1ActionPerformed // TODO add your handling code here: System.exit(0); }//GEN-LAST:event_jButton1ActionPerformed private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton2ActionPerformed // TODO add your handling code here: ViewBook ve=new ViewBook(); ve.setVisible(true); }//GEN-LAST:event_jButton2ActionPerformed /** * @param args the command line arguments */ public static void main(String args[]) { /* Set the Nimbus look and feel */ //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) "> /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel. * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html */ try { for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) { if ("Nimbus".equals(info.getName())) { javax.swing.UIManager.setLookAndFeel(info.getClassName()); break; } } } catch (ClassNotFoundException ex) { java.util.logging.Logger.getLogger(Exit.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (InstantiationException ex) { java.util.logging.Logger.getLogger(Exit.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (IllegalAccessException ex) { java.util.logging.Logger.getLogger(Exit.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (javax.swing.UnsupportedLookAndFeelException ex) { java.util.logging.Logger.getLogger(Exit.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } //</editor-fold> /* Create and display the form */ java.awt.EventQueue.invokeLater(new Runnable() { public void run() { new Exit().setVisible(true); } }); } // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JButton jButton1; private javax.swing.JButton jButton2; private javax.swing.JLabel jLabel1; // End of variables declaration//GEN-END:variables }
[ "bideshbiswas@ymail.com" ]
bideshbiswas@ymail.com
0f03b061445a83191bfff33fbbc7b1f3d76f4066
761813bed60e41724ea5ab2ac97b3a8b754a6db1
/Traversal.java
ce649065b21c82766cfb1a999e9156e839825b98
[]
no_license
ManuSodre/nemo
af27063e5b93d679c603b5f016b43f4231782589
b6848fc58fa86dcd86dd46ebdcf6a0b5c1145f92
refs/heads/master
2021-01-18T20:22:08.511741
2015-03-26T20:14:32
2015-03-26T20:14:32
null
0
0
null
null
null
null
UTF-8
Java
false
false
4,355
java
import java.util.LinkedList; import java.util.ListIterator; public class Traversal { static final Ocean ocean = new Ocean(0); static final int pathColor = 200; static final int deadEndColor = 100; static Cell fish; static void slow(){ try { Thread.sleep(10); } catch (InterruptedException e) {} } ///////////// Metodos a serem completados ///////////// static void q21() { boolean foundNemo = false; //list of all elements that we have cross LinkedList<Cell> l = new LinkedList<Cell>(); //list of elements to process LinkedList<Cell> q = new LinkedList<Cell>(); //fish that walks around Cell fish = new Cell(-1, -1); //cell to process LinkedList<Cell> neighbors = new LinkedList<Cell>(); //initial position Cell s = new Cell(ocean.marlin.x, ocean.marlin.y); //add first element l.add(s); q.add(s); //west,south,east,north while(!foundNemo) { fish = q.pop(); neighbors = fish.neighbors(); slow(); for(int i = 0; i < 4 && !foundNemo; i++) { Cell water = neighbors.get(i); if(ocean.isNemo(water)) { foundNemo = true; fish = water; System.out.println("Nemo is at: " + fish.toString()); } else if((!ocean.isWall(water) && !contains(l, water))) { q.add(water); l.add(water); } } } } static void q22() { boolean foundNemo = false; //list of all elements that we have cross LinkedList<Cell> l = new LinkedList<Cell>(); //list of elements to process LinkedList<Cell> q = new LinkedList<Cell>(); //fish that walks around Cell fish = new Cell(-1, -1); //cell to process LinkedList<Cell> neighbors = new LinkedList<Cell>(); //initial position Cell s = new Cell(ocean.marlin.x, ocean.marlin.y); //add first element l.add(s); q.add(s); //west,south,east,north while(!foundNemo) { fish = q.pop(); neighbors = fish.neighbors(); slow(); for(int i = 0; i < 4 && !foundNemo; i++) { Cell water = neighbors.get(i); if(ocean.isNemo(water)) { foundNemo = true; ocean.setMark(water, ocean.getMark(fish) + 1); fish = water; System.out.println("Nemo is at: " + fish.toString()); System.out.println("It took us: " + ocean.getMark(fish) + " steps"); } else if((!ocean.isWall(water) && !contains(l, water))) { q.add(water); l.add(water); ocean.setMark(water, ocean.getMark(fish) + 1); } } } } // convenções de marca: 1 (WEST), 2(SOUTH), 3(EAST), 4(NORTH) static final int WEST = 1, SOUTH = 2, EAST = 3, NORTH = 4; static void q23() { boolean foundNemo = false; //list of all elements that we have cross LinkedList<Cell> l = new LinkedList<Cell>(); //list of elements to process LinkedList<Cell> q = new LinkedList<Cell>(); //fish that walks around fish = new Cell(-1, -1); //cell to process LinkedList<Cell> neighbors = new LinkedList<Cell>(); //initial position Cell s = new Cell(ocean.marlin.x, ocean.marlin.y); //add first element l.add(s); q.add(s); //west,south,east,north while(!foundNemo) { fish = q.pop(); neighbors = fish.neighbors(); slow(); for(int i = 1; i < 5 && !foundNemo; i++) { Cell water = neighbors.get(i - 1); if(ocean.isNemo(water)) { foundNemo = true; ocean.setMark(water, i); fish = water; } else if((!ocean.isWall(water) && !contains(l, water))) { q.add(water); l.add(water); ocean.setMark(water, i); } } } } static void backTrack() { q23(); int mark = 0; while(!ocean.isMarlin(fish)) { slow(); mark = ocean.getMark(fish); switch(mark) { case WEST: ocean.setMark(fish, 200); fish = fish.east(); break; case EAST: ocean.setMark(fish, 200); fish = fish.west(); break; case NORTH: ocean.setMark(fish, 200); fish = fish.south(); break; case SOUTH: ocean.setMark(fish, 200); fish = fish.north(); break; } } } static boolean contains(LinkedList<Cell> l, Cell c) { boolean b = false; ListIterator<Cell> iterator = l.listIterator(); while(iterator.hasNext() && !b) { if(iterator.next().equals(c)) b = true; } return b; } public static void main(String[] args) { backTrack(); } }
[ "eugriner@gmail.com" ]
eugriner@gmail.com
a5a5f2cadeed5e98995188ba805e19f986880f5c
171bde057c7e8f3983572e3d7db9823363d35c29
/src/main/java/com/landingpage/service/dto/PageDTO.java
875c9f0e2682f42c92d0961a1d6ae42b8b04d79d
[]
no_license
vuxuanthang/linhtay-delivery
0d78ebc283ba4a00d96a78e8e70c7455d813d152
b18af7be109d2191e1fbdd7ad36d3aedbc5577d7
refs/heads/master
2023-04-15T23:27:59.735974
2021-04-19T08:21:31
2021-04-19T08:21:31
344,057,403
0
0
null
null
null
null
UTF-8
Java
false
false
2,086
java
package com.landingpage.service.dto; import java.time.LocalDate; import java.io.Serializable; import java.util.Objects; /** * A DTO for the Page entity. */ public class PageDTO implements Serializable { private Long id; private String name; private String content; private String urlLink; private Boolean active; private LocalDate createdOn; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } public String getUrlLink() { return urlLink; } public void setUrlLink(String urlLink) { this.urlLink = urlLink; } public Boolean isActive() { return active; } public void setActive(Boolean active) { this.active = active; } public LocalDate getCreatedOn() { return createdOn; } public void setCreatedOn(LocalDate createdOn) { this.createdOn = createdOn; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PageDTO pageDTO = (PageDTO) o; if(pageDTO.getId() == null || getId() == null) { return false; } return Objects.equals(getId(), pageDTO.getId()); } @Override public int hashCode() { return Objects.hashCode(getId()); } @Override public String toString() { return "PageDTO{" + "id=" + getId() + ", name='" + getName() + "'" + ", content='" + getContent() + "'" + ", urlLink='" + getUrlLink() + "'" + ", active='" + isActive() + "'" + ", createdOn='" + getCreatedOn() + "'" + "}"; } }
[ "vuxuanthang91@gmail.com" ]
vuxuanthang91@gmail.com
f8d92ec35e9374349cb765960fe53f3f323bf476
7bda7971c5953d65e33bdf054360bdf4488aa7eb
/src/com/arcsoft/office/thirdpart/achartengine/tools/AbstractTool.java
011d1f81fbb8dd711e5959b2692638870903fd67
[ "Apache-2.0" ]
permissive
daddybh/iOffice
ee5dd5938f258d7dcfc0757b1809d31662dd07ef
d1d6b57fb0d496db5c5649f5bc3751b2a1539f83
refs/heads/master
2021-12-10T20:47:15.238083
2016-09-20T12:14:17
2016-09-20T12:14:17
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,716
java
/** * Copyright (C) 2009, 2010 SC 4ViewSoft SRL * * 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.arcsoft.office.thirdpart.achartengine.tools; import com.arcsoft.office.thirdpart.achartengine.chart.AbstractChart; import com.arcsoft.office.thirdpart.achartengine.chart.XYChart; import com.arcsoft.office.thirdpart.achartengine.renderers.XYMultipleSeriesRenderer; /** * Abstract class for being extended by graphical view tools. */ public abstract class AbstractTool { /** The chart. */ protected AbstractChart mChart; /** The renderer. */ protected XYMultipleSeriesRenderer mRenderer; /** * Abstract tool constructor. * * @param chart the chart */ public AbstractTool(AbstractChart chart) { mChart = chart; if (chart instanceof XYChart) { mRenderer = ((XYChart) chart).getRenderer(); } } public double[] getRange(int scale) { double minX = mRenderer.getXAxisMin(scale); double maxX = mRenderer.getXAxisMax(scale); double minY = mRenderer.getYAxisMin(scale); double maxY = mRenderer.getYAxisMax(scale); return new double[] { minX, maxX, minY, maxY }; } public void checkRange(double[] range, int scale) { if (mChart instanceof XYChart) { double[] calcRange = ((XYChart) mChart).getCalcRange(scale); if (calcRange != null) { if (!mRenderer.isMinXSet(scale)) { range[0] = calcRange[0]; mRenderer.setXAxisMin(range[0], scale); } if (!mRenderer.isMaxXSet(scale)) { range[1] = calcRange[1]; mRenderer.setXAxisMax(range[1], scale); } if (!mRenderer.isMinYSet(scale)) { range[2] = calcRange[2]; mRenderer.setYAxisMin(range[2], scale); } if (!mRenderer.isMaxYSet(scale)) { range[3] = calcRange[3]; mRenderer.setYAxisMax(range[3], scale); } } } } protected void setXRange(double min, double max, int scale) { mRenderer.setXAxisMin(min, scale); mRenderer.setXAxisMax(max, scale); } protected void setYRange(double min, double max, int scale) { mRenderer.setYAxisMin(min, scale); mRenderer.setYAxisMax(max, scale); } }
[ "ljj@xinlonghang.cn" ]
ljj@xinlonghang.cn
5e2aa7a1bbddfb6128be1d64afc575a3e896b455
ca5a629be9db27eb65558aa84044e2d26e740fd2
/proj1/src/chap08/four/SmartTelevision.java
06077101db046e5be4fec84ea4f93ac409ddee19
[]
no_license
yundonghyeock/Java_train_One
c061caf1ff920b1d5a5dd1b1c89916f754653f74
1479b0edde91d7de2d38ee2dfd1f43febb81deea
refs/heads/master
2023-06-30T07:54:08.199540
2021-08-03T09:05:44
2021-08-03T09:05:44
384,331,830
0
0
null
null
null
null
UTF-8
Java
false
false
781
java
package chap08.four; import chap07.eight.RemoteControl; public class SmartTelevision implements RemoteControl, Searchable{ private int volume; @Override public void search(String url) { System.out.println(url + "을 검색합니다."); } @Override public void turnOn() { System.out.println("TV를 켭니다."); } @Override public void turnOff() { System.out.println("TV를 끕니다."); } @Override public void setVolume(int volume) { if(volume>RemoteControl.MAX_VOLUME) { this.volume = RemoteControl.MAX_VOLUME; } else if(volume<RemoteControl.MIN_VOLUME) { this.volume = RemoteControl.MIN_VOLUME; } else { this.volume = volume; } System.out.println("현재 Audio 볼륨:" + this.volume); } }
[ "504@DESKTOP-B0KVD9C" ]
504@DESKTOP-B0KVD9C
e9f575f124d9f311dc1a0c4165e6a1d5a97113a8
2ab2b20e81087ad619fc8e3ddcc9cb3c114d3f68
/app/src/main/java/app/kao/travel/MainActivity.java
c0fb6cc14d042619b4e3b637f85f39650522832d
[]
no_license
CaoLP/travel.me
1fc8fcc0b086256135fb3b3796ef7a39fab05b3a
78eca3ab7880a3cffbd8a796a68754f6b025f12f
refs/heads/master
2021-01-13T01:03:16.536933
2015-12-05T12:04:17
2015-12-05T12:04:17
47,452,218
0
0
null
null
null
null
UTF-8
Java
false
false
328
java
package app.kao.travel; import android.os.Bundle; import android.support.v7.app.ActionBarActivity; public class MainActivity extends ActionBarActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } }
[ "caolpgc60067@gmail.com" ]
caolpgc60067@gmail.com
ef7f5553ec2b2899171fc38b81a11c6dc4edb090
1a6921b614ab56e5aabffd9d6a30ee10c693cb20
/src/main/java/com/epam/university/java/core/task042/Task042Impl.java
f4cee477a830c0b4d92a4d707d5e479db5927fb6
[]
no_license
dmitry0923/epam-java-cources
237c5f97d30594e6373ab4081176435819613b1c
2e38b0e7370ebfe1bb949072f3b6348c49608a4a
refs/heads/master
2023-01-24T10:40:59.061409
2020-11-26T06:29:53
2020-11-26T06:29:53
288,529,131
0
0
null
2020-11-20T08:27:16
2020-08-18T18:08:51
Java
UTF-8
Java
false
false
3,406
java
package com.epam.university.java.core.task042; import java.time.LocalTime; import java.util.List; /** * Author Dmitry Novikov 19-Sep-20. */ public class Task042Impl implements Task042 { private final LocalTime startDay = LocalTime.of(9, 00); private final LocalTime endDay = LocalTime.of(18, 00); /** * <p> * Alexander is a businessman. He wants to implement an automatic system informing * that he's currently unavailable and the time when he's going to get back to the * office. Alexander works from 09:00 to 18:00. * </p> * <p> * There are three implementations of BookingResponse interface that describes * Alexander's availability. * </p> * <p> * Given a list with a schedule for a given day. List's elements consist start and * finish time of a given appointment in "hh:mm-hh:mm" 24-h format. And given a current * time in "hh:mm" 24-h format. If no appointments are scheduled for current time, * the function should return AvailableResponse instance. If Alexander is in the middle * of an appointment at current time, the function should return TimeProposalResponse * instance with the time he's going to be available. If Alexandr has no free time today, * the function should return BusyResponse instance. * </p> * <p> * Example: schedule ["09:30-10:15", "12:20-15:50"], currentTime "11:00", * result is AvailableResponse instance * Example: schedule ["09:30-10:15", "12:20-15:50"], currentTime "10:00", * result is TimeProposalResponse instance with proposed time "10:15" * Example: schedule ["09:30-10:15", "12:20-19:00"], currentTime "13:00", * result is BusyResponse instance * </p> * * @param schedule list with a schedule for a given day * @param currentTime current time * @return availability */ @Override public BookingResponse checkAvailability(List<String> schedule, String currentTime) { if (schedule == null || currentTime == null) { throw new IllegalArgumentException(); } LocalTime timeToTest = LocalTime.parse(currentTime.substring(0, 5)); LocalTime temp = timeToTest.compareTo(startDay) >= 0 ? timeToTest : startDay; if (schedule.size() == 0) { return getAnswer(temp, timeToTest); } for (String each : schedule) { LocalTime start = LocalTime.parse(each.substring(0, 5)); LocalTime end = LocalTime.parse(each.substring(6, 11)); if (temp.compareTo(end) < 0 && temp.compareTo(start) >= 0) { temp = end; } } return getAnswer(temp, timeToTest); } /** * Separate method that help to get answer. * * @param temp temp time * @param currentLocalTime current time * @return answer */ public BookingResponse getAnswer(LocalTime temp, LocalTime currentLocalTime) { if (temp.compareTo(endDay) < 0 && temp.compareTo(currentLocalTime) == 0) { return new AvailableResponse(); } else if (temp.compareTo(endDay) < 0) { TimeProposalResponse tempClass = new TimeProposalResponse(); tempClass.setProposedTime(temp.toString()); return tempClass; } else { return new BusyResponse(); } } }
[ "novicovdm@gmail.com" ]
novicovdm@gmail.com
523b681f4bb2ce216cd78dae85bbd3f365fb4b51
57004aeb1ba40db4c1f9a779aeee235ce2cd9852
/src/main/java/com/bitlimit/bits/persistence/model/SaturationLevel.java
1cd4213a22b7dd41bf7755dae4e94bbada101b76
[ "MIT" ]
permissive
BitLimit/Bits
a2f4eabc071442f1130f20ecec5b4500c930a436
21a9758053f8b44f6593c9468b3e98c7d0605dc1
refs/heads/master
2016-09-03T07:36:02.225869
2014-02-02T20:14:39
2014-02-02T20:14:39
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,697
java
package com.bitlimit.bits.persistence.model; import org.bukkit.Bukkit; import org.javalite.activejdbc.Model; import org.javalite.activejdbc.annotations.BelongsTo; /** * Created with IntelliJ IDEA. * User: kolin * Date: 12/23/13 * Time: 4:25 PM * To change this template use File | Settings | File Templates. */ @BelongsTo(parent = Market.class, foreignKeyName = "id_markets") public class SaturationLevel extends Model { /* * * Getters * */ public String getType() { return this.getString("type"); } public Float getDemand() { return this.getFloat("demand"); } /* * * Setters * */ public void setDemand(Float demand) { if (demand < 0F) { this.setFloat("demand", 0F); return; } this.setFloat("demand", demand); } /* * * Manipulation Convenience Methods * */ public void adjustDemandByAmount(Float amount) { /* Discussion: this recursive function was a first attempt. * It will be revised to use a positive incrementing count which will then be fed into an arctan based function. */ Float demand = this.getDemand(); if (demand == null) { demand = 0F; } this.setDemand(demand + amount); /* Increment x-value so the y-value can be calculated formulaically and without the absolute uncontrollable nature of forced recursion. */ } public Float getCurrentValuation() { Float x = this.getDemand(); /* x */ /* TODO: read from prefererences. */ Float halfLife = 1F; Float playerCount = (float)Bukkit.getOnlinePlayers().length; if (this.getType().equals("block-break")) { halfLife = 5000F * playerCount; } return (float)(2F * (-Math.atan((1F/halfLife) * x) / Math.PI) + 1F); } }
[ "kolin@kolinkrewinkel.com" ]
kolin@kolinkrewinkel.com
038902d3e8fe1262a3edea74f23fc379bb8720c9
17ef79490a3c94a32fae19e5720201fbb5ecf876
/acms-service/acms-service-log/src/main/java/cn/edu/haut/cssp/acms/log/util/PagingConverter.java
a44356f9eb81dac1bb27590b9555d8e13a3847dc
[]
no_license
xulihuazj/acms
f405d61f42457fef317d82e47600623a8b5f8f62
d5ccedc028f4e8209613cb3f48035e97a4e02fe4
refs/heads/master
2021-01-20T08:16:35.872138
2017-05-27T07:58:33
2017-05-27T07:58:33
83,901,680
0
0
null
null
null
null
UTF-8
Java
false
false
1,734
java
package cn.edu.haut.cssp.acms.log.util; import java.util.List; /** * 负责把指定的分页对象转换为简化的分页对象,在执行转换之前需要手动设置分页所需的5条信息对应的获取方法名 * Description: * @author: xulihua * @date: 2017年1月21日下午4:51:54 * @note */ public class PagingConverter { /** * 获取当前页数的方法名 */ public static String pageNoMethodName = "getPageNo"; /** * 获取每页显示数据条数的方法名 */ public static String pageSizeMethodName = "getPageSize"; /** * 获取数据总条数的方法名 */ public static String totalCountMethodName = "getTotalCount"; /** * 获取总页数的方法名 */ public static String totalPageMethodName = "getTotalPage"; /** * 获取本页数据集合的方法名 */ public static String dataListMethodName = "getDataList"; /** * * 把传入的分页对象转换为简化的分页对象 * @param pageSrcObj * @return */ @SuppressWarnings("unchecked") public static <T> LitePaging<T> convert(Object pageSrcObj) { Class<?> srcClass = pageSrcObj.getClass(); LitePaging<T> paging = new LitePaging<T>(); try { paging.setPageNo((Integer)srcClass.getMethod(pageNoMethodName).invoke(pageSrcObj)); paging.setPageSize((Integer)srcClass.getMethod(pageSizeMethodName).invoke(pageSrcObj)); paging.setTotalCount((Integer)srcClass.getMethod(totalCountMethodName).invoke(pageSrcObj)); paging.setTotalPage((Integer)srcClass.getMethod(totalPageMethodName).invoke(pageSrcObj)); paging.setDataList((List<T>)srcClass.getMethod(dataListMethodName).invoke(pageSrcObj)); } catch (Exception e) { throw new RuntimeException(e); } return paging; } }
[ "xulihuazj@foxmail.com" ]
xulihuazj@foxmail.com
62c8afe3400c460f493b037786129585030b320c
da5e50a8c09d19b172123e48b38853ea35918ec2
/src/by/bsu/salatmachine/model/commands/Command.java
a7a36d60e787bef1f5476ce98db1fb36f8157848
[]
no_license
stepanovdg/SalatMachine
0f61520c976c198c02b5fe86b3dd6b82e8e5d07e
750ff6fa92986216fc5af1e1de712f1c15224a92
refs/heads/master
2021-01-01T17:47:00.321591
2012-01-31T17:20:57
2012-01-31T17:20:57
2,868,388
0
0
null
null
null
null
UTF-8
Java
false
false
495
java
package by.bsu.salatmachine.model.commands; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; /** * Created by IntelliJ IDEA. * User: Stepanov Dmitriy * Date: 28.11.11 * Time: 23:04 * */ public interface Command { public String execute(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException; }
[ "stepanovdg@gmail.com" ]
stepanovdg@gmail.com
45ac03fa872d5a35abbbe78751b37a1268570f5f
349abbf9a21172a87b207b104af9f9b4c99f5846
/sixbExchange-dev/app/src/main/java/com/sixbexchange/mvp/popu/SelectExchPopu.java
2c9c276d2107e78c12b07dda7b3157d4e348214f
[]
no_license
hi-noikiy/6b
71e2e8b50f0561922cc5d243b59854117fcf05a5
ba3c5fff78935da7a35578dc70357e77f22f27ef
refs/heads/master
2022-01-27T02:31:15.123355
2019-06-25T07:35:33
2019-06-25T07:35:33
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,906
java
package com.sixbexchange.mvp.popu; import android.content.Context; import android.support.v7.widget.LinearLayoutManager; import android.support.v7.widget.RecyclerView; import android.view.View; import android.view.ViewGroup; import com.fivefivelike.mybaselibrary.utils.callback.DefaultClickLinsener; import com.fivefivelike.mybaselibrary.view.popupWindow.BasePopupWindow; import com.sixbexchange.R; import com.sixbexchange.adapter.SelectExchangeAdapter; import com.sixbexchange.entity.bean.ExchangeListBean; import java.util.ArrayList; import java.util.List; /** * Created by 郭青枫 on 2017/8/17. */ public class SelectExchPopu extends BasePopupWindow { private RecyclerView recycler_view; private SelectExchangeAdapter adapter; DefaultClickLinsener defaultClickLinsener; public SelectExchPopu(Context context, int position) { super(context); adapter.setSelectPosition(position); this.defaultClickLinsener = defaultClickLinsener; } @Override public int getLayoutId() { return R.layout.layout_select_exchange; } @Override public void initView() { setHeight(ViewGroup.LayoutParams.WRAP_CONTENT); setWidth(ViewGroup.LayoutParams.MATCH_PARENT); recycler_view = findViewById(R.id.recycler_view); ArrayList list = new ArrayList<>(); adapter = new SelectExchangeAdapter(context, list); recycler_view.setLayoutManager(new LinearLayoutManager(context) { @Override public boolean canScrollVertically() { return false; } }); recycler_view.setAdapter(adapter); } public void showList(List<ExchangeListBean> list, View view, DefaultClickLinsener defaultClickLinsener) { adapter.setDefaultClickLinsener(defaultClickLinsener); adapter.setData(list); showAsDropDown(view); } }
[ "362603030@qq.com" ]
362603030@qq.com
9cb0492f4fde0b298df353059aba05596c9d22a3
39beaf627eafa0f32e83754343da5e5c9c1e630d
/product/server/src/main/java/com/stick/product/exception/ProductException.java
672502b46207f8648b579a20a6a973bfc7e2a917
[]
no_license
whgithub20080710/sc-restaurant
865050900bb1c9e6dacbed2ba37d8c3cc70ae2af
a9e49458f95548555009738f429005960a1f5c52
refs/heads/master
2020-05-02T20:29:45.654858
2019-08-09T12:20:39
2019-08-09T12:20:39
178,193,379
0
0
null
null
null
null
UTF-8
Java
false
false
427
java
package com.stick.product.exception; import com.stick.product.enums.ResultEnum; public class ProductException extends RuntimeException { private Integer code; public ProductException(Integer code, String message) { super(message); this.code = code; } public ProductException(ResultEnum resultEnum) { super(resultEnum.getMessage()); this.code = resultEnum.getCode(); } }
[ "309136832@qq.com" ]
309136832@qq.com
1cf9ad16ff07886434abb039a1743b890e2b0ace
4163be8ee9cba0ad3d5684db5664bd8bb5b542ea
/src/main/java/net/jolikit/threading/locks/InterfaceCheckerLock.java
0298109cdde6440fbea782f8c2359cca13754813
[ "Apache-2.0" ]
permissive
jeffhain/jolikit
a7efef3b04d50d29a91526c6e726abeabdd52304
3e8dc5a3660de9c74bd8873cd5509926320c5056
refs/heads/master
2023-08-16T09:38:53.797560
2021-11-05T20:50:45
2021-11-05T20:50:45
183,952,453
5
1
null
null
null
null
UTF-8
Java
false
false
2,958
java
/* * Copyright 2019 Jeff Hain * * 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 net.jolikit.threading.locks; import java.util.ConcurrentModificationException; import java.util.concurrent.locks.Lock; /** * Interface for locks that provide methods to check whether or not * they are held, by current thread or by another thread. * * One of the rare Jolikit classes designed not for faster execution, * but for safer coding. */ public interface InterfaceCheckerLock extends Lock { /** * @return True if this lock is locked, false otherwise. */ public boolean isLocked(); /** * @return True if this lock is held by current thread, false otherwise. */ public boolean isHeldByCurrentThread(); /** * @return The number of holds on this lock by the current thread, * or zero if this lock is not held by the current thread. */ public int getHoldCount(); /** * @return A best effort estimation (possibly null) of the owner, * or null if not owned. */ public Thread getOwnerBestEffort(); /* * Check methods, which are convenience methods for actual locks, since * they can be implemented based on other methods, but which need to be * defined here for passive locks. * * These methods return true if the check is positive, to allow for call in an assertion. */ /** * @return True if lock is not held by a thread, throws exception otherwise. * @throws IllegalStateException if a thread does hold the lock. */ public boolean checkNotLocked(); /** * @return True if lock is not held by another thread, throws exception otherwise. * @throws ConcurrentModificationException if another thread does hold the lock. */ public boolean checkNotHeldByAnotherThread(); /** * This method can be used to check critical sections are not being run by rogue threads. * * @return True if lock is held by current thread, throws exception otherwise. * @throws ConcurrentModificationException if the calling thread does not hold the lock. */ public boolean checkHeldByCurrentThread(); /** * @return True if lock is not held by current thread, throws exception otherwise. * @throws IllegalStateException if the calling thread holds the lock. */ public boolean checkNotHeldByCurrentThread(); }
[ "jeffhain@rocketmail.com" ]
jeffhain@rocketmail.com
a39a25c49e24911b178c14dd799255ab8bbf0893
e2204d7be959c77e81cec51b9179acaa06a72cb7
/game-service/src/main/java/com/game/service/GameController.java
7726f38d2b4d24e57af75ccdf7aba64cb89fe1f4
[]
no_license
muzeyr/spring-microservices-game
b1176da5fb45acf23507c9228cc7597c7a48e6d5
dc4e33f6e31001741144adc38be05af55149677f
refs/heads/master
2020-05-20T16:47:14.963386
2019-05-08T20:15:00
2019-05-08T20:15:00
185,673,010
0
0
null
null
null
null
UTF-8
Java
false
false
880
java
package com.game.service; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RestController; import com.game.entity.Block; import com.game.entity.Player; import com.game.entity.PlayerBlock; @RestController public class GameController { @Autowired private GameService gameService; @PostMapping("/blocks") public List<Block> blocks(@RequestBody List<Block> list) { return gameService.placeMove(list); } @PostMapping("/players") public List<Player> playerList() { return gameService.playerList(); } @PostMapping("/playerBlock") public PlayerBlock playerBlock(@RequestBody PlayerBlock playerBlock) { return gameService.playerBlockService(playerBlock); } }
[ "muzeyr@gmail.com" ]
muzeyr@gmail.com
e1ab182b4a0396bb298056f7cb112d867d4a6854
205663422fc4b81cfa402391c790cbad2e5a8478
/android-core/plugins/org.eclipse.andworx.build/src/org/eclipse/andworx/config/ConfigContext.java
603cd6c22870663b005754e8fa841be88e42659c
[ "Apache-2.0" ]
permissive
androidworx/andworx
17f9691ef0bf6570abb035ce1a37555e7b1c9600
f8de7f8caa20e632fdd1eda2e47f32ec391392c4
refs/heads/master
2020-04-07T01:48:48.664197
2018-12-26T03:13:29
2018-12-26T03:13:29
157,953,144
3
0
null
null
null
null
UTF-8
Java
false
false
2,122
java
/* * Copyright (C) 2018 The Android Open Source Project * * Licensed under the Eclipse Public License, Version 1.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.eclipse.org/org/documents/epl-v10.php * * 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.eclipse.andworx.config; import static com.android.builder.core.BuilderConstants.RELEASE; import org.eclipse.e4.core.contexts.IEclipseContext; import org.eclipse.e4.core.services.events.IEventBroker; import org.eclipse.andworx.build.AndworxFactory; import org.eclipse.andworx.entity.SigningConfigBean; import org.eclipse.andworx.event.AndworxEvents; import org.eclipse.andworx.project.ProjectProfile; import org.eclipse.andworx.registry.ProjectState; /** * Context for persisting an entity bean * @param <T> */ public abstract class ConfigContext { protected ProjectState projectState; protected SigningConfigBean bean; private IEventBroker eventBroker; public ConfigContext(ProjectState projectState, SigningConfigBean bean) { this.projectState = projectState; this.bean = bean; } public ProjectProfile getProjectProfile() { return projectState.getProfile(); } public SigningConfigBean getBean() { return bean; } protected void post(SigningConfigBean updateBean) { if (eventBroker == null) { IEclipseContext eclipseContext = AndworxFactory.instance().getEclipseContext(); eventBroker = (IEventBroker) eclipseContext.get(IEventBroker.class.getName()); } projectState.getContext().getVariantConfiguration(RELEASE).getBuildType().setSigningConfig(updateBean); eventBroker.post(AndworxEvents.UPDATE_ENTITY_BEAN, updateBean); } abstract public void update(SigningConfigBean updateBean); abstract public void persist(); }
[ "andrewbowley@aapt.net.au" ]
andrewbowley@aapt.net.au
a3adb0d68409c08805db3ce758dc3e5d6ebb132c
7613598f1511e839c433c4a1ed44bd0999a969d4
/src/de/niklas/chat/model/exception/ServerException.java
e6584ce6ff2a57d20eae6f89e11e2d1832a15768
[]
no_license
Schmeink/PVSChat
ded0f917ae7f3ae40da42ef024acc85484604723
8a52a138170b4c4b2e7d864148bf9cafbfdc30ae
refs/heads/master
2020-09-16T23:24:52.034671
2019-11-25T10:23:02
2019-11-25T10:23:02
223,919,007
0
0
null
null
null
null
UTF-8
Java
false
false
294
java
package de.niklas.chat.model.exception; import de.niklas.chat.model.data.response.ErrorResponse; public abstract class ServerException extends Exception { public ServerException(String errorMsg) { super(errorMsg); } public abstract ErrorResponse getError(); }
[ "niklas.schmeink@gmx.de" ]
niklas.schmeink@gmx.de
abf2b1abfb664f18606f184d87617ea8500a42d6
071a9fa7cfee0d1bf784f6591cd8d07c6b2a2495
/corpus/norm-class/eclipse.jdt.ui/1959.java
20271b6ff3019d52210032976eb0847e3efc8984
[ "MIT" ]
permissive
masud-technope/ACER-Replication-Package-ASE2017
41a7603117f01382e7e16f2f6ae899e6ff3ad6bb
cb7318a729eb1403004d451a164c851af2d81f7a
refs/heads/master
2021-06-21T02:19:43.602864
2021-02-13T20:44:09
2021-02-13T20:44:09
187,748,164
0
0
null
null
null
null
UTF-8
Java
false
false
599
java
copyright ibm corporation rights reserved program accompanying materials terms eclipse license accompanies distribution http eclipse org legal epl html contributors ibm corporation initial api implementation org eclipse jdt internal compare replace local history java elements java compare with edit ion action javacomparewitheditionaction java history action javahistoryaction java compare with edit ion action javacomparewitheditionaction override java history action impl javahistoryactionimpl create delegate createdelegate java compare with edit ion action impl javacomparewitheditionactionimpl
[ "masudcseku@gmail.com" ]
masudcseku@gmail.com
38fe82a21c773f4a5e3e1e3e3b7042b8bdf78355
ef88d005d0c1bdcb573a22745cb614feba05e1f5
/Exercise/src/ducanh/demo/ThreadExample1.java
15fcd65c3cd83b5996ddd55274b92fe8ae92c337
[]
no_license
ducanhnguyense/JavaCore
3b92ab063ff9ef22c63f94a72d829a9873360074
4fbf54fc0e46fc7a8e89c1a4d28c1d4fe6cfac7c
refs/heads/master
2020-04-23T11:44:32.744465
2019-03-01T07:06:56
2019-03-01T07:06:56
171,146,864
0
0
null
null
null
null
UTF-8
Java
false
false
700
java
package ducanh.demo; public class ThreadExample1 { public static void main(String[] args) { Thread thread = new Thread() { public void run() { try { System.out.println("Pause"); Thread.sleep(3000); System.out.println("Restart"); } catch (InterruptedException e) { } } }; thread.start(); MyThread mythread = new MyThread(); // thread.run(); } } class MyThread extends Thread { public void run() { for (int i = 0; i < 10; i++) { try { System.out.println("Pause"); Thread.sleep(500); System.out.println("Restart"); } catch (InterruptedException e) { } } } } class YourThread implements Runnable { public void run() { } }
[ "ducna@runsystem.net" ]
ducna@runsystem.net
d083e5608d734da0471a8729e6f29e7e97bc92be
1bd14090516e1e45c38df7f4d8684ace95854fea
/ner-analyzer/src/main/java/annotators/AnnEntitiesComparator.java
099e8b459f2367f8f7bd3c0683ed6518fe12604b
[]
no_license
evelinad/bachelors-ner-thesis
5d11286955055aa9b6515f3da725708d3bf1d135
9a05c5143bb1d58ee66163a413df178022cbf116
refs/heads/master
2020-03-25T06:49:34.624422
2013-07-07T22:10:56
2013-07-07T22:10:56
null
0
0
null
null
null
null
UTF-8
Java
false
false
432
java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package annotators; import java.util.Comparator; /** * * @author vlad */ class AnnEntitiesComparator implements Comparator<AnnNamedEntity> { public AnnEntitiesComparator() { } @Override public int compare(AnnNamedEntity o1, AnnNamedEntity o2) { return o1.getStartIndex() - o2.getStartIndex(); } }
[ "vlad.paunescu@gmail.com" ]
vlad.paunescu@gmail.com
bca457561fbafe712b5b147a24b4766cc5fc88f5
1b43740e76be9bce47e5c81d316bbc2673122129
/src/main/java/com/vithya/questions/model/People.java
a66c9895f9287035694a728f2d6e3020e58a34f1
[]
no_license
vithyaepsi/QuestionBaseService
b77e4dab26b8b4777639c57254d8be05527858e4
065ddcc5cc6409326268e253357d68599058c5c7
refs/heads/master
2020-03-29T05:25:57.548903
2018-09-20T13:37:13
2018-09-20T13:37:13
149,582,048
0
0
null
null
null
null
UTF-8
Java
false
false
878
java
package com.vithya.questions.model; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import org.springframework.data.annotation.Id; @Entity public class People { @Id @GeneratedValue(strategy=GenerationType.AUTO) private int id; private String firstname; private String lastname; private int age; public People() { } public People(String fn, String ln, int age) { this.firstname = fn; this.lastname = ln; this.age = age; } public String getFirstname() { return firstname; } public void setFirstname(String firstname) { this.firstname = firstname; } public String getLastname() { return lastname; } public void setLastname(String lastname) { this.lastname = lastname; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } }
[ "vithya.voeuk@cgi.com" ]
vithya.voeuk@cgi.com
fc527406c5dc037c4054da0f040123301d13dd0d
39b8e77f93305aac1b123b4b5ff7153d46480c84
/Aula_9/questão_3.java
128a7ea1d5f1caeeb104295964cca5c5490dd64c
[]
no_license
jose-werlandie/POO-20181
d965ea0021f19001deedca09b76580ff12332929
db0a7e018d25c2eac56b79066c2596b72d39cd11
refs/heads/master
2020-03-07T01:16:22.797883
2018-07-16T12:18:28
2018-07-16T12:18:28
127,178,215
0
0
null
null
null
null
UTF-8
Java
false
false
1,002
java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package atividade9; import java.io.BufferedReader; import java.io.FileReader; import java.io.IOException; /** * * @author werlan */ public class questão_3 { public static void main(String[] args) { try { // Le o arquivo FileReader ler = new FileReader("teste3.txt"); BufferedReader reader = new BufferedReader(ler); String linha; while( (linha = reader.readLine()) != null ){ System.out.println(linha); } // Imprime confirmacao System.out.println("Feito =D"); } catch (IOException e) { e.printStackTrace();//ele faz uma fila de execuçãoes em caso de erro , ele exibe o caminho ate chegar no erro. } } }
[ "noreply@github.com" ]
noreply@github.com
5877ea2e85564cad2830e9f9aa9a148d98e6cefd
50335a1b9d2444c3ef13d7a10fcf23abb3d70c20
/src/main/java/pl/training/shop/payments/adapters/rest/PaymentRestController.java
cc0a2ba4b6248df957e718725866d9dcc496b2e5
[]
no_license
wradecki/spring-training
6f7d9c97ffce4ded54a836620dbcf89c82ffa297
54cc1a80fb215ff285ab6618d9e8faf9146fe7c2
refs/heads/master
2023-07-29T01:04:10.732356
2021-09-23T14:52:38
2021-09-23T14:52:38
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,572
java
package pl.training.shop.payments.adapters.rest; import lombok.RequiredArgsConstructor; import org.springframework.http.ResponseEntity; import org.springframework.security.access.annotation.Secured; import org.springframework.validation.BindingResult; import org.springframework.validation.annotation.Validated; import org.springframework.web.bind.annotation.*; import pl.training.shop.commons.BaseValidation; import pl.training.shop.commons.ExtendedValidation; import pl.training.shop.commons.web.ResultPageDto; import pl.training.shop.commons.web.UriBuilder; import pl.training.shop.payments.api.PaymentService; import javax.annotation.security.RolesAllowed; import javax.validation.Valid; import static org.springframework.http.MediaType.APPLICATION_JSON_VALUE; import static pl.training.shop.payments.application.PaymentStatus.STARTED; /*@Validated*/ @RequestMapping(value = "api/payments"/*, consumes = APPLICATION_JSON_VALUE, produces = APPLICATION_JSON_VALUE*/) @RestController @RequiredArgsConstructor public class PaymentRestController { private final PaymentService paymentService; private final RestPaymentModelMapper mapper; @PostMapping public ResponseEntity<PaymentDto> process(@RequestBody @Validated(BaseValidation.class) /*@Valid*/ PaymentRequestDto paymentRequestDto/*, BindingResult bindingResult*/) { /*if (bindingResult.hasErrors()) { return ResponseEntity.badRequest().build(); }*/ var paymentRequest = mapper.toDomain(paymentRequestDto); var payment = paymentService.process(paymentRequest); var paymentDto = mapper.toDto(payment); var locationUri = UriBuilder.requestUriWithId(paymentDto.getId()); return ResponseEntity.created(locationUri).body(paymentDto); } //@Secured("ROLE_ADMIN") //@RolesAllowed("ROLE_ADMIN") @GetMapping("{id}") public PaymentDto getPaymentById(@PathVariable String id) { var payment = paymentService.getById(id); return mapper.toDto(payment); } @GetMapping("started") public ResultPageDto<PaymentDto> getPayments(@RequestParam int pageNumber, @RequestParam(required = false, defaultValue = "5") int pageSize) { var resultPage = paymentService.getPaymentsByStatus(STARTED, pageNumber, pageSize); return mapper.toDto(resultPage); } /*@ExceptionHandler(PaymentNotFoundException.class) @ResponseStatus(NOT_FOUND) public ExceptionDto onPaymentNotFound(PaymentNotFoundException exception) { return new ExceptionDto("Payment not found"); }*/ }
[ "landrzejewski.poczta@gmail.com" ]
landrzejewski.poczta@gmail.com
c6e28551dde7052f1dbca5917c1fde2eeec5a68c
2339f7dd822475465a4426b927462181c6a4e6c8
/src/breakingbad/Dimensiones.java
a4fbd3fb1316356660bfbc6b245a754e569f9fd1
[]
no_license
Kevoe/Breaking-Bad
800df297628f916b34057399627dec156be4808c
c6fd25f757431e9d4af4c2695caa0aff54a2c30c
refs/heads/master
2020-03-30T07:43:42.914608
2014-03-09T00:57:03
2014-03-09T00:57:03
null
0
0
null
null
null
null
UTF-8
Java
false
false
604
java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package breakingbad; public interface Dimensiones { public static final int WIDTH = 500; //ancho public static final int HEIGTH = 600; //largo public static final int BOTTOM = 580; //Si llega aqui la bola pierdes public static final int PLATAFORMA_RIGHT = 430; //Hasta donde puede llegar la plataforma public static final int BOLA_RIGHT = 465; //Hasta donde puede llegar la plataforma }
[ "kevoestrada@gmail.com" ]
kevoestrada@gmail.com
7c19a1d5e9ffe14cd247aec9eca712162913effa
0d93c43f0e4e3144834cef4e6f8ebd04cddd0de2
/touchnmath/src/com/touchnedu/gradea/studya/math/EnterActivity.java
a5b1f380ab408507ce8a89c7aa8c4b32ec4d5a4c
[]
no_license
touchnedu/OpenMyScript
ab66273d328287a61addd4f775dc526104f413ab
270ae9fbe54063f73dc8dfba3fcd72a414de631e
refs/heads/master
2020-05-23T08:02:29.610832
2017-01-31T04:14:54
2017-01-31T04:14:54
80,487,050
0
0
null
null
null
null
UTF-8
Java
false
false
5,956
java
package com.touchnedu.gradea.studya.math; import com.touchnedu.gradea.studya.math.membership.JoinActivity; import com.touchnedu.gradea.studya.math.membership.LoginActivity; import com.touchnedu.gradea.studya.math.modules.DataManager; import com.touchnedu.gradea.studya.math.service.BaseActivityManager; import com.touchnedu.gradea.studya.math.service.NaverLogin; import com.touchnedu.gradea.studya.math.service.ParentActivity; import com.touchnedu.gradea.studya.math.util.Util; import android.app.Dialog; import android.content.Intent; import android.os.Bundle; import android.view.KeyEvent; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.ImageView; public class EnterActivity extends ParentActivity implements OnClickListener { private BaseActivityManager am = BaseActivityManager.getInstance(); private Button mLoginBtn, mJoinBtn, mNaver, njOk, njCancel; private ImageView njStudentOn, njStudentOff, njTeacherOn, njTeacherOff, njParentOn, njParentOff, njEtcOn, njEtcOff; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_enterpage); am.addActivity(this); mJoinBtn = (Button)findViewById(R.id.enterpage_join); mLoginBtn = (Button)findViewById(R.id.enterpage_login); mNaver = (Button)findViewById(R.id.enterpage_naver); mJoinBtn.setOnClickListener(this); mLoginBtn.setOnClickListener(this); mNaver.setOnClickListener(this); } @Override public void onClick(View v) { switch(v.getId()) { case R.id.enterpage_login: startActivity(new Intent(this, LoginActivity.class)); break; case R.id.enterpage_join: startActivity(new Intent(this, JoinActivity.class)); break; case R.id.enterpage_naver: customDialogForNaverJoin(); break; case R.id.naverjoin_student_off: studentOn(); break; case R.id.naverjoin_teacher_off: teacherOn(); break; case R.id.naverjoin_parent_off: parentOn(); break; case R.id.naverjoin_etc_off: etcOn(); break; } } public boolean onKeyDown(int keyCode, KeyEvent event) { if(keyCode == KeyEvent.KEYCODE_BACK) { Util.finishApp(this); } return super.onKeyDown(keyCode, event); } private void customDialogForNaverJoin() { final Dialog dialog = new Dialog(this, R.style.FullHeightDialog); dialog.setContentView(R.layout.custom_dialog_job); dialog.show(); njStudentOn = (ImageView)dialog.findViewById(R.id.naverjoin_student_on); njStudentOff = (ImageView)dialog.findViewById(R.id.naverjoin_student_off); njTeacherOn = (ImageView)dialog.findViewById(R.id.naverjoin_teacher_on); njTeacherOff = (ImageView)dialog.findViewById(R.id.naverjoin_teacher_off); njParentOn = (ImageView)dialog.findViewById(R.id.naverjoin_parent_on); njParentOff = (ImageView)dialog.findViewById(R.id.naverjoin_parent_off); njEtcOn = (ImageView)dialog.findViewById(R.id.naverjoin_etc_on); njEtcOff = (ImageView)dialog.findViewById(R.id.naverjoin_etc_off); njOk = (Button)dialog.findViewById(R.id.naver_join_ok); njCancel = (Button)dialog.findViewById(R.id.naver_join_cancel); njStudentOff.setOnClickListener(this); njTeacherOff.setOnClickListener(this); njParentOff.setOnClickListener(this); njEtcOff.setOnClickListener(this); njOk.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { startOnNaver(); dialog.dismiss(); } }); njCancel.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { dialog.dismiss(); } }); } private void studentOn() { njStudentOn.setVisibility(View.VISIBLE); njStudentOff.setVisibility(View.GONE); njTeacherOn.setVisibility(View.GONE); njTeacherOff.setVisibility(View.VISIBLE); njParentOn.setVisibility(View.GONE); njParentOff.setVisibility(View.VISIBLE); njEtcOn.setVisibility(View.GONE); njEtcOff.setVisibility(View.VISIBLE); DataManager.curJob = "학생"; } private void teacherOn() { njStudentOn.setVisibility(View.GONE); njStudentOff.setVisibility(View.VISIBLE); njTeacherOn.setVisibility(View.VISIBLE); njTeacherOff.setVisibility(View.GONE); njParentOn.setVisibility(View.GONE); njParentOff.setVisibility(View.VISIBLE); njEtcOn.setVisibility(View.GONE); njEtcOff.setVisibility(View.VISIBLE); DataManager.curJob = "선생님"; } private void parentOn() { njStudentOn.setVisibility(View.GONE); njStudentOff.setVisibility(View.VISIBLE); njTeacherOn.setVisibility(View.GONE); njTeacherOff.setVisibility(View.VISIBLE); njParentOn.setVisibility(View.VISIBLE); njParentOff.setVisibility(View.GONE); njEtcOn.setVisibility(View.GONE); njEtcOff.setVisibility(View.VISIBLE); DataManager.curJob = "학부모"; } private void etcOn() { njStudentOn.setVisibility(View.GONE); njStudentOff.setVisibility(View.VISIBLE); njTeacherOn.setVisibility(View.GONE); njTeacherOff.setVisibility(View.VISIBLE); njParentOn.setVisibility(View.GONE); njParentOff.setVisibility(View.VISIBLE); njEtcOn.setVisibility(View.VISIBLE); njEtcOff.setVisibility(View.GONE); DataManager.curJob = "대학생 및 일반인"; } private void startOnNaver() { if(njStudentOn.getVisibility() == View.GONE && njTeacherOn.getVisibility() == View.GONE && njEtcOn.getVisibility() == View.GONE && njParentOn.getVisibility() == View.GONE) { Util.customOneDialog(this, "", "직업을 선택하세요.", R.layout.custom_dialog_one, false); return; } NaverLogin naverLogin = new NaverLogin(EnterActivity.this); naverLogin.forceLogin(); DataManager.onNaverLogin = true; } }
[ "contact@touchnedu.com" ]
contact@touchnedu.com
97532b63a492faf509a0f594abe3da6492df5659
2c4799871bb75f8f4cd0c9eb2457dfdff6f4b439
/NBLM/app/src/main/java/com/xk/nblm/vlayout/extend/InnerRecycledViewPool.java
a715b080f2ebcde2485c585f48f58ee772b5af54
[]
no_license
kehongwei/NbPlusDragRecyclerView
9b741b974f9b78e03124ac9c741dcaa1a6fb8715
c89eec9d77c2e602533b1e340ada939af1db1f4a
refs/heads/master
2020-07-31T08:01:21.278027
2019-09-24T09:02:39
2019-09-24T09:02:39
210,538,380
0
0
null
null
null
null
UTF-8
Java
false
false
5,877
java
/* * MIT License * * Copyright (c) 2016 Alibaba Group * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ package com.xk.nblm.vlayout.extend; import android.support.v7.widget.RecyclerView; import android.util.Log; import android.util.SparseIntArray; import android.view.View; import java.io.Closeable; /** * Wrapping original RecycledViewPool to provides destroy callback on Views * and also provides wrapping another ViewPool. * This ViewPool doesn't support multi thread. * The default max size of recycler is 5 as the original one, you can also modify to a larger one to satisfy your need. */ public final class InnerRecycledViewPool extends RecyclerView.RecycledViewPool { private static final String TAG = "InnerRecycledViewPool"; private static int DEFAULT_MAX_SIZE = 20; /* * Wrapped InnerPool */ private RecyclerView.RecycledViewPool mInnerPool; private SparseIntArray mScrapLength = new SparseIntArray(); private SparseIntArray mMaxScrap = new SparseIntArray(); /** * Wrap an existing pool * * @param pool */ public InnerRecycledViewPool(RecyclerView.RecycledViewPool pool) { this.mInnerPool = pool; } public InnerRecycledViewPool() { this(new RecyclerView.RecycledViewPool()); } @Override public void clear() { for (int i = 0, size = mScrapLength.size(); i < size; i++) { int viewType = mScrapLength.keyAt(i); RecyclerView.ViewHolder holder = mInnerPool.getRecycledView(viewType); while (holder != null) { destroyViewHolder(holder); holder = mInnerPool.getRecycledView(viewType); } } mScrapLength.clear(); super.clear(); } @Override public void setMaxRecycledViews(int viewType, int max) { // When viewType is changed, because can not get items in wrapped pool, // destroy all the items for the viewType RecyclerView.ViewHolder holder = mInnerPool.getRecycledView(viewType); while (holder != null) { destroyViewHolder(holder); holder = mInnerPool.getRecycledView(viewType); } // change maxRecycledViews this.mMaxScrap.put(viewType, max); this.mScrapLength.put(viewType, 0); mInnerPool.setMaxRecycledViews(viewType, max); } @Override public RecyclerView.ViewHolder getRecycledView(int viewType) { RecyclerView.ViewHolder holder = mInnerPool.getRecycledView(viewType); if (holder != null) { int scrapHeapSize = mScrapLength.indexOfKey(viewType) >= 0 ? this.mScrapLength.get(viewType) : 0; if (scrapHeapSize > 0) mScrapLength.put(viewType, scrapHeapSize - 1); } return holder; } /** * Get all items size in current pool * * @return the size of items in ViewPool */ public int size() { int count = 0; for (int i = 0, size = mScrapLength.size(); i < size; i++) { int val = mScrapLength.valueAt(i); count += val; } return count; } /** * This will be only run in UI Thread * * @param scrap ViewHolder scrap that will be recycled */ @SuppressWarnings("unchecked") public void putRecycledView(RecyclerView.ViewHolder scrap) { int viewType = scrap.getItemViewType(); if (mMaxScrap.indexOfKey(viewType) < 0) { // does't contains this viewType, initial scrap list mMaxScrap.put(viewType, DEFAULT_MAX_SIZE); setMaxRecycledViews(viewType, DEFAULT_MAX_SIZE); } // get current heap size int scrapHeapSize = mScrapLength.indexOfKey(viewType) >= 0 ? this.mScrapLength.get(viewType) : 0; if (this.mMaxScrap.get(viewType) > scrapHeapSize) { // if exceed current heap size mInnerPool.putRecycledView(scrap); mScrapLength.put(viewType, scrapHeapSize + 1); } else { // destroy viewHolder destroyViewHolder(scrap); } } private void destroyViewHolder(RecyclerView.ViewHolder holder) { View view = holder.itemView; // if view inherits {@link Closeable}, cal close method if (view instanceof Closeable) { try { ((Closeable) view).close(); } catch (Exception e) { Log.w(TAG, Log.getStackTraceString(e), e); } } if (holder instanceof Closeable) { try { ((Closeable) holder).close(); } catch (Exception e) { Log.w(TAG, Log.getStackTraceString(e), e); } } } public void setDefaultMaxSize(int maxSize) { DEFAULT_MAX_SIZE = maxSize; } }
[ "1844581560@qq.com" ]
1844581560@qq.com
630af60ca2953b3f906dbd003859d2069933698b
6d907c1c9e155bfe12de636a3f8df25508c16fa4
/src/main/java/com/turreta/supercsv/custom/EmployeeHireDateCsvRule.java
e27c7332b09a4b7b874f5f5ed8f675a263eea465
[]
no_license
Turreta/turreta-supercsv-validation-example
dc321b39497aed49b1d2a69d346abd88598d5318
676c1c867135fbe11bb2de928c8c02e48710de88
refs/heads/master
2020-08-03T18:00:46.886608
2016-11-12T08:44:01
2016-11-12T08:44:01
73,540,079
3
0
null
null
null
null
UTF-8
Java
false
false
1,420
java
package com.turreta.supercsv.custom; import java.time.DateTimeException; import java.time.LocalDate; import org.supercsv.cellprocessor.CellProcessorAdaptor; import org.supercsv.exception.SuperCsvConstraintViolationException; import org.supercsv.util.CsvContext; public class EmployeeHireDateCsvRule extends CellProcessorAdaptor { @Override public <T> T execute(Object value, CsvContext context) { validateInputNotNull(value, context); // throws an Exception if the input is null String regex = "^(0[0-9]||1[0-2])/([0-2][0-9]||3[0-1])/([0-9][0-9])?[0-9][0-9]$"; if (value instanceof String && !value.toString().matches(regex)) { throw new SuperCsvConstraintViolationException(String.format("mismatched format value '%s' encountered - '%s'", value, "MM/DD/YYYY"), context, this); } if (value instanceof String) { String tmpValue = (String) value; try { LocalDate ld = LocalDate.of(Integer.valueOf(tmpValue.substring(6, 10)), Integer.valueOf(tmpValue.substring(0, 2)), Integer.valueOf(tmpValue.substring(3, 5))); } catch (DateTimeException dte) { throw new SuperCsvConstraintViolationException(String.format("invalid date '%s' encountered", value), context, this); } } return next.execute(value, context); } }
[ "SANG018@my.arvato-systems.com" ]
SANG018@my.arvato-systems.com
fa4fec4f31cb347d5620214a5fe0062269ec9923
f36fdac289e37442b4e30c5e00db2e2be1cc65f5
/src/main/java/com/qiwi/user/exeption/DataValidationException.java
068f83ce116a90ecc83e6a8a1a8e8640e6665170
[]
no_license
Zhukaev/Custom-Rest-Controller
efc96935a1767dbd04f77dd29838b78511c4e848
7eee7d1ad94d7c61b5f76b8da7d2a666c259aa52
refs/heads/master
2020-07-17T05:48:57.368890
2016-12-12T13:36:04
2016-12-12T13:36:04
73,934,510
0
0
null
null
null
null
UTF-8
Java
false
false
180
java
package com.qiwi.user.exeption; public class DataValidationException extends UserException { public DataValidationException(String message) { super(message); } }
[ "a.zhukaev@hq.qiwi.com" ]
a.zhukaev@hq.qiwi.com
5044d5537dbc75f854ffb2c6c9d88805e70cdb19
49078da542954b87a9ea0b8b23229bc476b9cd88
/build/app/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/swiperefreshlayout/R.java
5dc0427918e2d7c6d34bfbfc5411cf117699db79
[]
no_license
neogedom/geomel_mapa
9614ef987c455ecf1f3eeb707ff167d364a89f6a
9a688adaac79ff020656f86849e40af8e3df9c47
refs/heads/master
2020-05-19T13:39:19.312656
2019-05-05T15:14:49
2019-05-05T15:14:49
185,044,407
1
0
null
null
null
null
UTF-8
Java
false
false
10,458
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 androidx.swiperefreshlayout; public final class R { private R() {} public static final class attr { private attr() {} public static final int alpha = 0x7f020027; public static final int font = 0x7f02007e; public static final int fontProviderAuthority = 0x7f020080; public static final int fontProviderCerts = 0x7f020081; public static final int fontProviderFetchStrategy = 0x7f020082; public static final int fontProviderFetchTimeout = 0x7f020083; public static final int fontProviderPackage = 0x7f020084; public static final int fontProviderQuery = 0x7f020085; public static final int fontStyle = 0x7f020086; public static final int fontVariationSettings = 0x7f020087; public static final int fontWeight = 0x7f020088; public static final int ttcIndex = 0x7f020117; } public static final class color { private color() {} public static final int notification_action_color_filter = 0x7f040047; public static final int notification_icon_bg_color = 0x7f040048; public static final int ripple_material_light = 0x7f040053; public static final int secondary_text_default_material_light = 0x7f040055; } public static final class dimen { private dimen() {} public static final int compat_button_inset_horizontal_material = 0x7f05004b; public static final int compat_button_inset_vertical_material = 0x7f05004c; public static final int compat_button_padding_horizontal_material = 0x7f05004d; public static final int compat_button_padding_vertical_material = 0x7f05004e; public static final int compat_control_corner_material = 0x7f05004f; public static final int compat_notification_large_icon_max_height = 0x7f050050; public static final int compat_notification_large_icon_max_width = 0x7f050051; public static final int notification_action_icon_size = 0x7f05005b; public static final int notification_action_text_size = 0x7f05005c; public static final int notification_big_circle_margin = 0x7f05005d; public static final int notification_content_margin_start = 0x7f05005e; public static final int notification_large_icon_height = 0x7f05005f; public static final int notification_large_icon_width = 0x7f050060; public static final int notification_main_column_padding_top = 0x7f050061; public static final int notification_media_narrow_margin = 0x7f050062; public static final int notification_right_icon_size = 0x7f050063; public static final int notification_right_side_padding_top = 0x7f050064; public static final int notification_small_icon_background_padding = 0x7f050065; public static final int notification_small_icon_size_as_large = 0x7f050066; public static final int notification_subtext_size = 0x7f050067; public static final int notification_top_pad = 0x7f050068; public static final int notification_top_pad_large_text = 0x7f050069; } public static final class drawable { private drawable() {} public static final int notification_action_background = 0x7f06006a; public static final int notification_bg = 0x7f06006b; public static final int notification_bg_low = 0x7f06006c; public static final int notification_bg_low_normal = 0x7f06006d; public static final int notification_bg_low_pressed = 0x7f06006e; public static final int notification_bg_normal = 0x7f06006f; public static final int notification_bg_normal_pressed = 0x7f060070; public static final int notification_icon_background = 0x7f060071; public static final int notification_template_icon_bg = 0x7f060072; public static final int notification_template_icon_low_bg = 0x7f060073; public static final int notification_tile_bg = 0x7f060074; public static final int notify_panel_notification_icon_bg = 0x7f060075; } public static final class id { private id() {} public static final int action_container = 0x7f07000e; public static final int action_divider = 0x7f070010; public static final int action_image = 0x7f070011; public static final int action_text = 0x7f070017; public static final int actions = 0x7f070018; public static final int async = 0x7f070020; public static final int blocking = 0x7f070023; public static final int chronometer = 0x7f07002b; public static final int forever = 0x7f07003f; public static final int icon = 0x7f070044; public static final int icon_group = 0x7f070045; public static final int info = 0x7f070049; public static final int italic = 0x7f07004a; public static final int line1 = 0x7f07004d; public static final int line3 = 0x7f07004e; public static final int normal = 0x7f070057; public static final int notification_background = 0x7f070058; public static final int notification_main_column = 0x7f070059; public static final int notification_main_column_container = 0x7f07005a; public static final int right_icon = 0x7f070060; public static final int right_side = 0x7f070061; public static final int tag_transition_group = 0x7f070081; public static final int tag_unhandled_key_event_manager = 0x7f070082; public static final int tag_unhandled_key_listeners = 0x7f070083; public static final int text = 0x7f070085; public static final int text2 = 0x7f070086; public static final int time = 0x7f070089; public static final int title = 0x7f07008a; } public static final class integer { private integer() {} public static final int status_bar_notification_info_maxnum = 0x7f080005; } public static final class layout { private layout() {} public static final int notification_action = 0x7f09001c; public static final int notification_action_tombstone = 0x7f09001d; public static final int notification_template_custom_big = 0x7f090024; public static final int notification_template_icon_group = 0x7f090025; public static final int notification_template_part_chronometer = 0x7f090029; public static final int notification_template_part_time = 0x7f09002a; } public static final class string { private string() {} public static final int status_bar_notification_info_overflow = 0x7f0b003a; } public static final class style { private style() {} public static final int TextAppearance_Compat_Notification = 0x7f0c00ec; public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00ed; public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00ef; public static final int TextAppearance_Compat_Notification_Time = 0x7f0c00f2; public static final int TextAppearance_Compat_Notification_Title = 0x7f0c00f4; public static final int Widget_Compat_NotificationActionContainer = 0x7f0c015d; public static final int Widget_Compat_NotificationActionText = 0x7f0c015e; } public static final class styleable { private styleable() {} public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f020027 }; public static final int ColorStateListItem_android_color = 0; public static final int ColorStateListItem_android_alpha = 1; public static final int ColorStateListItem_alpha = 2; public static final int[] FontFamily = { 0x7f020080, 0x7f020081, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f020085 }; public static final int FontFamily_fontProviderAuthority = 0; public static final int FontFamily_fontProviderCerts = 1; public static final int FontFamily_fontProviderFetchStrategy = 2; public static final int FontFamily_fontProviderFetchTimeout = 3; public static final int FontFamily_fontProviderPackage = 4; public static final int FontFamily_fontProviderQuery = 5; public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f02007e, 0x7f020086, 0x7f020087, 0x7f020088, 0x7f020117 }; public static final int FontFamilyFont_android_font = 0; public static final int FontFamilyFont_android_fontWeight = 1; public static final int FontFamilyFont_android_fontStyle = 2; public static final int FontFamilyFont_android_ttcIndex = 3; public static final int FontFamilyFont_android_fontVariationSettings = 4; public static final int FontFamilyFont_font = 5; public static final int FontFamilyFont_fontStyle = 6; public static final int FontFamilyFont_fontVariationSettings = 7; public static final int FontFamilyFont_fontWeight = 8; public static final int FontFamilyFont_ttcIndex = 9; public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; public static final int GradientColor_android_startColor = 0; public static final int GradientColor_android_endColor = 1; public static final int GradientColor_android_type = 2; public static final int GradientColor_android_centerX = 3; public static final int GradientColor_android_centerY = 4; public static final int GradientColor_android_gradientRadius = 5; public static final int GradientColor_android_tileMode = 6; public static final int GradientColor_android_centerColor = 7; public static final int GradientColor_android_startX = 8; public static final int GradientColor_android_startY = 9; public static final int GradientColor_android_endX = 10; public static final int GradientColor_android_endY = 11; public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; public static final int GradientColorItem_android_color = 0; public static final int GradientColorItem_android_offset = 1; } }
[ "neogedom@gmail.com" ]
neogedom@gmail.com
7880685acd2f4b153269fa393fea0939511ee386
3e331d69188559191aa6dfb0d24b9f2befa00b69
/sdk/src/test/java/com/yjj/eventbusex/ExampleUnitTest.java
e690dfff05239e8170cd190404b0760097422ee5
[]
no_license
yangjianjun198/eventbusex
2d3805338849c8e6f0e5e0e885bc9e79443e2eb3
7b5c0a5eed5ce90d3d9886d612b1eb8ed086ce95
refs/heads/master
2021-01-17T22:21:51.017359
2016-05-29T11:39:10
2016-05-29T11:39:10
59,932,630
0
0
null
null
null
null
UTF-8
Java
false
false
311
java
package com.yjj.eventbusex; import org.junit.Test; import static org.junit.Assert.*; /** * To work on unit tests, switch the Test Artifact in the Build Variants view. */ public class ExampleUnitTest { @Test public void addition_isCorrect() throws Exception { assertEquals(4, 2 + 2); } }
[ "yangjianjun1028@126.com" ]
yangjianjun1028@126.com
625525037f971620031099b2ab1e60dd6d8f4641
406252a6c51d481cd8239945488b10747ad14f56
/dsdelivery/backend/src/main/java/com/dsdelivery/dsdelivery/repositories/OrderRepository.java
c9434998a99674c61e3ed1213fb5fe14b083c5d9
[]
no_license
haradaigor/dsdelivery
6192a5bf5ef55fb185cc3895386cbd4e83cea857
7d4215a053b0bec535ee0dc4fe90db7ac2ffeef4
refs/heads/main
2023-02-28T02:15:11.315791
2021-02-03T03:17:55
2021-02-03T03:17:55
327,989,726
0
0
null
null
null
null
UTF-8
Java
false
false
496
java
package com.dsdelivery.dsdelivery.repositories; import java.util.List; import com.dsdelivery.dsdelivery.entities.Order; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.Query; public interface OrderRepository extends JpaRepository <Order, Long> { @Query("SELECT DISTINCT obj FROM Order obj JOIN FETCH obj.products" + " WHERE obj.status = 0 ORDER BY obj.moment ASC") List<Order> findOrdersWithProducts(); }
[ "haradaabreu37@gmail.com" ]
haradaabreu37@gmail.com
cbf8a8bf0e624cbd8835536d2c6ca8b6998bb1cd
e7827ee97e816d24d0ea97be8dd58acf8ff56d72
/NewMadness.java
80a5ca5c99fbec7ba9d5b953c4f20ec6aaa7a517
[]
no_license
gus07ven/JavaLearning
edc6995a43f1d3b4a7387e16935c37660bb08e0e
66c6927d11b8b327f9d3ace1a075420dd3f42fe4
refs/heads/master
2020-05-21T17:41:46.512321
2017-10-30T05:31:15
2017-10-30T05:31:15
62,418,121
0
0
null
null
null
null
UTF-8
Java
false
false
3,242
java
package chapters24HR; import java.awt.*; import javax.swing.*; public class NewMadness extends JFrame { // set up row 1 JPanel row1 = new JPanel(); JComboBox venezuela = new JComboBox(); // set up row 2 JPanel row2 = new JPanel(); JLabel numbersLabel = new JLabel("Your picks: ", JLabel.RIGHT); JTextField[] numbers = new JTextField[6]; JLabel winnersLabel = new JLabel("Winners: ", JLabel.RIGHT); JTextField[] winners = new JTextField[6]; // set up row 3 JPanel row3 = new JPanel(); JCheckBox stop = new JCheckBox("Stop", true); JCheckBox play = new JCheckBox("Play", true); JCheckBox reset = new JCheckBox("Reset", true); // set up row 4 JPanel row4 = new JPanel(); JLabel got3Label = new JLabel("3 of 6: ", JLabel.RIGHT); JTextField got3 = new JTextField("0"); JLabel got4Label = new JLabel("4 of 6: ", JLabel.RIGHT); JTextField got4 = new JTextField("0"); JLabel got5Label = new JLabel("5 of 6: ", JLabel.RIGHT); JTextField got5 = new JTextField("0"); JLabel got6Label = new JLabel("6 of 6: ", JLabel.RIGHT); JTextField got6 = new JTextField("0"); JLabel drawingsLabel = new JLabel("Drawings: ", JLabel.RIGHT); JTextField drawings = new JTextField("0"); JLabel yearsLabel = new JLabel("Years: ", JLabel.RIGHT); JTextField years = new JTextField(); public NewMadness() { super("New Madness"); setLookAndFeel(); setSize(550, 400); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); GridLayout layout = new GridLayout(5, 1, 10, 10); setLayout(layout); FlowLayout layout1 = new FlowLayout(FlowLayout.CENTER, 10, 10); venezuela.addItem("Quick Pick"); venezuela.addItem("Personal pick"); row1.add(venezuela); add(row1); GridLayout layout2 = new GridLayout(2, 7, 10, 10); row2.setLayout(layout2); row2.add(numbersLabel); for (int i = 0; i < 6; i++) { numbers[i] = new JTextField(); row2.add(numbers[i]); } row2.add(winnersLabel); for (int i = 0; i < 6; i++) { winners[i] = new JTextField(); winners[i].setEditable(false); row2.add(winners[i]); } add(row2); FlowLayout layout3 = new FlowLayout(FlowLayout.CENTER, 10, 10); row3.setLayout(layout3); row3.add(stop); row3.add(play); row3.add(reset); add(row3); GridLayout layout4 = new GridLayout(2, 3, 20, 10); row4.setLayout(layout4); row4.add(got3Label); got3.setEditable(false); row4.add(got3); row4.add(got4Label); got4.setEditable(false); row4.add(got4); row4.add(got5Label); got5.setEditable(false); row4.add(got5); row4.add(got6Label); got6.setEditable(false); row4.add(got6); row4.add(drawingsLabel); drawings.setEditable(false); row4.add(drawings); row4.add(yearsLabel); years.setEditable(false); row4.add(years); add(row4); setVisible(true); } private void setLookAndFeel() { try { UIManager.setLookAndFeel( "com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel" ); } catch (Exception exc) { //ignore error } } public static void main(String[] args) { NewMadness frame = new NewMadness(); } }
[ "noreply@github.com" ]
noreply@github.com
dfea8663815e8c89d872ada11b48c54ea1214586
49358a26d5efd8dc4b806c6796a410ed056928c8
/the-big-dipper/MerakService/src/main/java/com/dipper/merak/mapper/UserMapper.java
e6d8431e1f227417b7da98426ada4f112608eb87
[]
no_license
feimumoke/dipper
2063a212bc7a1126ba3d03613fd7c197354ad5e6
d3f50977a401b76d794d4e0a7da0b1823ac0a1c5
refs/heads/master
2021-07-23T20:01:41.215763
2021-04-14T13:55:26
2021-04-14T13:55:26
247,435,946
14
7
null
null
null
null
UTF-8
Java
false
false
214
java
package com.dipper.merak.mapper; import com.dipper.proto.entity.User; import org.springframework.stereotype.Repository; @Repository public interface UserMapper extends BaseMapper<User, Integer> { }
[ "2399698976@qq.com" ]
2399698976@qq.com
eb06b15ed7ed1db0acd4fae7bc7856121b65e006
123020ba14fc8a0a619c8aeced49e345a31012c1
/src/com/client3/JComboBoxModel.java
53b345f51fb08b142248cc83a61ad35fd9823362
[]
no_license
Sophiros/chat-room
9fa2c879ec1fd429b3f477ff2868393d57ce086b
b55e6225e690015866d1e4e0cb6d1ef60fd772ad
refs/heads/master
2020-08-03T12:54:38.132275
2019-10-08T06:05:49
2019-10-08T06:05:49
211,758,725
0
0
null
null
null
null
UTF-8
Java
false
false
3,998
java
package com.client3; import java.awt.Color; import java.awt.Container; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; import java.io.IOException; import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JList; import javax.swing.JScrollPane; import javax.swing.JTextArea; import javax.swing.JTextField; import javax.swing.WindowConstants; import com.client.*; /*聊天室类,负责保存当前登陆的每一个用户,并且当某一个用户给服务器发信息时,他需要立刻把这条信息转发给其他客户机*/ @SuppressWarnings("serial") public class JComboBoxModel extends JFrame { private JScrollPane Txtchat; static JTextField Txtinput; private JTextField Txtip,Txtname; private JTextField Txtport; static JList<String> jusernamelist; JComboBoxModel(){ super("魔方小镇v1.2"); setBounds(100,100,1050,700); Container c = getContentPane(); c.setLayout(null); ClientElem clientElem = new ClientElem(); JButton jbtxt = new JButton("文字发送");jbtxt.setBounds(900,490,110,60);c.add(jbtxt); JButton jbpic = new JButton("图片发送");jbpic.setBounds(900,560,110,60);c.add(jbpic); Txtname = new JTextField(null);Txtname.setEditable(false); Txtip = new JTextField(null);Txtip.setEditable(false);//服务器IP Txtport = new JTextField(null);Txtport.setEditable(false);//端口号 jusernamelist = clientElem.getUserNameList(); Txtinput = clientElem.getMessage();//打字文本框 JTextArea ta = clientElem.getBody(); ta.setLineWrap(true);//设置自动换行 ta.setEditable(false); Txtchat = new JScrollPane(ta);//聊天文本框 /*添加文本框*/ Txtinput.setBounds(210,490,690,130); Txtip.setBounds(90,20,200,40); Txtchat.setBounds(210,100,800,360); Txtport.setBounds(390,20,200,40); jusernamelist.setBounds(30,120,150,500); Txtname.setBounds(700,20,200,40); Txtname.setHorizontalAlignment(JTextField.CENTER); c.add(Txtinput); c.add(Txtip); c.add(Txtchat); c.add(Txtport); c.add(jusernamelist); c.add(Txtname); Txtchat.setFocusable(false); /*添加标签*/ JLabel j1 = new JLabel("服务器IP:"); JLabel j2 = new JLabel("服务器端口号:"); JLabel j3 = new JLabel("用户名:"); JLabel j4 = new JLabel("当前在线用户:"); j1.setBounds(30,20,60,40); j2.setBounds(330,20,60,40); j3.setBounds(610,20,100,40); j4.setBounds(30,80,100,40); c.add(j1); c.add(j2); c.add(j3); c.add(j4); c.setBackground(Color.WHITE); this.setResizable(false); setVisible(true); setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE); Txtname.setText(clientElem.getName()); Txtip.setText(clientElem.getServerIP()); Txtport.setText(String.valueOf(clientElem.getPort())); jbtxt.addActionListener(new SendMessageAction()); //添加列表监听器,在输入框中显示 @联系人说: jusernamelist.addListSelectionListener(new SelecTry()); //设置按键监听,打开文件选择窗口 jbpic.addActionListener(new SendFileAction()); addWindowListener(new WindowAdapter() { public void windowClosing(WindowEvent e) { super.windowClosing(e); try { if(!clientElem.getSocket().isClosed()) { clientElem.getSocket().close(); } } catch (IOException ex) { ex.printStackTrace(); } } }); } public static void main(String[] args){ new JComboBoxModel(); } }
[ "zhanghanwen1013@icloud.com" ]
zhanghanwen1013@icloud.com
98b65543781d44e859d74fc735e54ec2d23b9857
a27ba8598c49fbc37d77f95200b089f30e197b16
/LABORATORIO_ESTADISTICA2/src/laboratorio_estadistica2/Coladerer.java
32c5e5e51cae4361bf7a5c93e642a3bd55490874
[]
no_license
jerson932/estadistica_inferencial
71feaf8bc9d9292590f64a9f43599ec19fcb6653
21bf9265054c9755829163a9cc97519c1122334a
refs/heads/main
2023-05-12T22:15:38.720003
2021-05-29T19:50:15
2021-05-29T19:50:15
370,873,507
0
0
null
null
null
null
UTF-8
Java
false
false
5,187
java
package laboratorio_estadistica2; import java.text.NumberFormat; import laboratorio_estadistica2.PruebaDeHipotesis; public class Coladerer extends javax.swing.JFrame { NumberFormat nf = NumberFormat.getNumberInstance(); PruebaDeHipotesis prueba; /** * Creates new form Coladerer */ public Coladerer(PruebaDeHipotesis prueba) { initComponents(); this.prueba = prueba; zaLabel.setText(nf.format(prueba.zr)); zrLabel.setText(nf.format(prueba.zt)); if(prueba.acepta) { conclusionLabel.setText("SE CONCLUYE QUE LA HIPOTESIS SE ACEPTA"); }else { conclusionLabel.setText("SE CONCLUYE QUE LA HIPOTESIS NO SE ACEPTA"); } } /** * This method is called from within the constructor to initialize the form. * WARNING: Do NOT modify this code. The content of this method is always * regenerated by the Form Editor. */ @SuppressWarnings("unchecked") // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents private void initComponents() { jLabel1 = new javax.swing.JLabel(); zaLabel = new javax.swing.JLabel(); zrLabel = new javax.swing.JLabel(); jLabel3 = new javax.swing.JLabel(); conclusionLabel = new javax.swing.JLabel(); setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); jLabel1.setIcon(new javax.swing.ImageIcon(getClass().getResource("/vista/cola a la derechaBIG.png"))); // NOI18N zaLabel.setFont(new java.awt.Font("Arial", 1, 24)); // NOI18N zaLabel.setForeground(new java.awt.Color(246, 96, 7)); zrLabel.setFont(new java.awt.Font("Arial", 1, 24)); // NOI18N zrLabel.setForeground(new java.awt.Color(255, 0, 37)); jLabel3.setFont(new java.awt.Font("Arial", 1, 24)); // NOI18N jLabel3.setText("Zr ="); conclusionLabel.setFont(new java.awt.Font("Arial", 1, 18)); // NOI18N javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); getContentPane().setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup() .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addComponent(zaLabel) .addGap(297, 297, 297)) .addGroup(layout.createSequentialGroup() .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addGap(185, 185, 185) .addComponent(zrLabel, javax.swing.GroupLayout.PREFERRED_SIZE, 31, javax.swing.GroupLayout.PREFERRED_SIZE)) .addGroup(layout.createSequentialGroup() .addGap(122, 122, 122) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(conclusionLabel, javax.swing.GroupLayout.PREFERRED_SIZE, 583, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(jLabel1)))) .addContainerGap(131, Short.MAX_VALUE)) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addGap(132, 132, 132) .addComponent(jLabel3) .addContainerGap(660, Short.MAX_VALUE))) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addGap(22, 22, 22) .addComponent(jLabel1) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(zaLabel) .addGap(99, 99, 99) .addComponent(zrLabel, javax.swing.GroupLayout.PREFERRED_SIZE, 36, javax.swing.GroupLayout.PREFERRED_SIZE) .addGap(18, 18, 18) .addComponent(conclusionLabel, javax.swing.GroupLayout.PREFERRED_SIZE, 50, javax.swing.GroupLayout.PREFERRED_SIZE) .addContainerGap(296, Short.MAX_VALUE)) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup() .addContainerGap(449, Short.MAX_VALUE) .addComponent(jLabel3) .addGap(370, 370, 370))) ); pack(); }// </editor-fold>//GEN-END:initComponents // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JLabel conclusionLabel; private javax.swing.JLabel jLabel1; private javax.swing.JLabel jLabel3; private javax.swing.JLabel zaLabel; private javax.swing.JLabel zrLabel; // End of variables declaration//GEN-END:variables }
[ "fgutierrezl1@miumg.edu.gt" ]
fgutierrezl1@miumg.edu.gt
cf5789f0e933db480af703c2d39f247125a09834
4024146ff484084a14868d937d301874af73ebbf
/lab10part2/src/lab10part2/lab10part2.java
49ad11110c030b6a4c06f331af04e005ed7c4d00
[ "MIT" ]
permissive
sakwaa/lab10
1d489b88f86cf01171a17e49477ca01d351018cf
c3b8a05dca48ffd2d4cdd5ece4c4f91f7fa98935
refs/heads/master
2016-09-05T12:20:04.691106
2015-04-12T01:16:05
2015-04-12T01:16:05
33,798,591
0
0
null
null
null
null
UTF-8
Java
false
false
8,769
java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package lab10part2; import javax.swing.JTextField; /** * * @author sakwaa */ public class lab10part2 extends javax.swing.JFrame { private static Chart chart; /** * Creates new form lab10part2 */ public lab10part2() { initComponents(); } /** * This method is called from within the constructor to initialize the form. * WARNING: Do NOT modify this code. The content of this method is always * regenerated by the Form Editor. */ @SuppressWarnings("unchecked") // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents private void initComponents() { jPanel1 = new javax.swing.JPanel(); jTextField1 = new javax.swing.JTextField(); jTextField2 = new javax.swing.JTextField(); jTextField3 = new javax.swing.JTextField(); jTextField4 = new javax.swing.JTextField(); setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); jTextField1.setHorizontalAlignment(javax.swing.JTextField.RIGHT); jTextField1.setText("jTextField1"); jTextField1.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jTextField1ActionPerformed(evt); } }); jTextField2.setHorizontalAlignment(javax.swing.JTextField.RIGHT); jTextField2.setText("jTextField2"); jTextField2.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jTextField2ActionPerformed(evt); } }); jTextField3.setHorizontalAlignment(javax.swing.JTextField.RIGHT); jTextField3.setText("jTextField3"); jTextField3.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jTextField3ActionPerformed(evt); } }); jTextField4.setHorizontalAlignment(javax.swing.JTextField.RIGHT); jTextField4.setText("jTextField4"); jTextField4.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jTextField4ActionPerformed(evt); } }); javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1); jPanel1.setLayout(jPanel1Layout); jPanel1Layout.setHorizontalGroup( jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(jPanel1Layout.createSequentialGroup() .addContainerGap() .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(jTextField1, javax.swing.GroupLayout.DEFAULT_SIZE, 241, Short.MAX_VALUE) .addComponent(jTextField2) .addComponent(jTextField3) .addComponent(jTextField4)) .addContainerGap()) ); jPanel1Layout.setVerticalGroup( jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(jPanel1Layout.createSequentialGroup() .addContainerGap() .addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(jTextField2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(jTextField3, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(jTextField4, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addContainerGap(24, Short.MAX_VALUE)) ); javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); getContentPane().setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) ); pack(); }// </editor-fold>//GEN-END:initComponents private void jTextField1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jTextField1ActionPerformed chart.setData(Double.parseDouble(jTextField1.getText()), 0); }//GEN-LAST:event_jTextField1ActionPerformed private void jTextField2ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jTextField2ActionPerformed chart.setData(Double.parseDouble(jTextField2.getText()), 1); }//GEN-LAST:event_jTextField2ActionPerformed private void jTextField3ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jTextField3ActionPerformed chart.setData(Double.parseDouble(jTextField3.getText()), 2); }//GEN-LAST:event_jTextField3ActionPerformed private void jTextField4ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jTextField4ActionPerformed chart.setData(Double.parseDouble(jTextField4.getText()), 3); }//GEN-LAST:event_jTextField4ActionPerformed /** * @param args the command line arguments */ public static void main(String args[]) { /* Set the Nimbus look and feel */ //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) "> /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel. * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html */ try { for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) { if ("Nimbus".equals(info.getName())) { javax.swing.UIManager.setLookAndFeel(info.getClassName()); break; } } } catch (ClassNotFoundException ex) { java.util.logging.Logger.getLogger(lab10part2.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (InstantiationException ex) { java.util.logging.Logger.getLogger(lab10part2.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (IllegalAccessException ex) { java.util.logging.Logger.getLogger(lab10part2.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (javax.swing.UnsupportedLookAndFeelException ex) { java.util.logging.Logger.getLogger(lab10part2.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } //</editor-fold> jTextField1 = new JTextField(); jTextField2 = new JTextField(); jTextField3 = new JTextField(); jTextField4 = new JTextField(); /* Create and display the form */ java.awt.EventQueue.invokeLater(new Runnable() { public void run() { new lab10part2().setVisible(true); jTextField1.setText("0.0"); jTextField2.setText("0.0"); jTextField3.setText("0.0"); jTextField4.setText("0.0"); chart = Chart.getInstance("Lab 10 Part 2 - Singleton"); chart.setVisible(true); } }); } // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JPanel jPanel1; private static javax.swing.JTextField jTextField1; private static javax.swing.JTextField jTextField2; private static javax.swing.JTextField jTextField3; private static javax.swing.JTextField jTextField4; // End of variables declaration//GEN-END:variables }
[ "sakwaa@gmail.com" ]
sakwaa@gmail.com
7a9f95b7c6112278bb23d48109f20249b8a28b03
d5aab2969b6288843b860326040da6dbe87edc4a
/SeleniumFramework/src/test/java/test/Test1_GoogleSearch.java
d0c4588c7b801d279081e205d38c5a71bef334c1
[]
no_license
LuisYairAquino/SeleniumJavaFramework
571be28c59f2f199c97c21330bbb4cf765dcc0c1
3ced061a995a27ef4798ef1e71c3d4878f21e456
refs/heads/master
2022-12-27T16:57:42.691368
2020-07-01T21:07:17
2020-07-01T21:07:17
276,285,928
0
0
null
2020-10-13T23:12:53
2020-07-01T05:34:05
HTML
UTF-8
Java
false
false
904
java
package test; import org.openqa.selenium.By; import org.openqa.selenium.Keys; import org.openqa.selenium.WebDriver; import org.openqa.selenium.firefox.FirefoxDriver; public class Test1_GoogleSearch { public static void main(String[] args) { googleSearch(); } public static void googleSearch() { String projectPath = System.getProperty("user.dir"); System.setProperty("webdriver.gecko.driver", projectPath + "/drivers/geckodriver/geckodriver.exe"); WebDriver driver = new FirefoxDriver(); // goto google.com driver.get("https://google.com"); // enter text in search textbox driver.findElement(By.name("q")).sendKeys("Automation Step by Step"); // click on search button // driver.findElement(By.name("btnK")).click(); driver.findElement(By.name("q")).sendKeys(Keys.ENTER); // close browser driver.close(); System.out.println("Test Completed Successfully"); } }
[ "luisyairam.it@gmail.com" ]
luisyairam.it@gmail.com
e49a0540ccd85e8d2e70d0d1b2d656b634d7774e
4766d6acd1111729a55d9b8712dcdb0f4a8b6de4
/app/src/main/java/ke/co/swahilibox/swahilibox/SwahiliBoxParse.java
81c6a5c55129c0fe14c766f19b817274e159b165
[]
no_license
SwahiliBox/AndroidApp
ecc216d57c34200ec4c21def85c1d7c13abc260c
a4d2e97590dcad3962171365c138929608a69d25
refs/heads/master
2021-01-10T15:09:48.774592
2016-01-12T00:52:56
2016-01-12T00:52:56
46,257,948
9
5
null
2019-04-29T11:46:21
2015-11-16T07:08:45
Java
UTF-8
Java
false
false
991
java
package ke.co.swahilibox.swahilibox; import android.app.Application; import android.util.Log; import com.parse.ParseACL; import com.parse.ParseUser; import ke.co.swahilibox.swahilibox.helper.ParseUtil; /** * Created by japheth on 11/16/15. */ public class SwahiliBoxParse extends Application { /** * This is an application class, executed on app launch * Parse is initialized here */ private static SwahiliBoxParse mInstance; public static synchronized SwahiliBoxParse getInstance() { return mInstance; } @Override public void onCreate() { super.onCreate(); Log.i("SwahiliBoxParse", "SwahiliBoxParse on create"); mInstance = this; //register with parse ParseUtil.registerParse(getApplicationContext()); ParseUser.enableAutomaticUser(); ParseACL defaultAcl = new ParseACL(); defaultAcl.setPublicReadAccess(true); ParseACL.setDefaultACL(defaultAcl, true); } }
[ "japhethobala@yahoo.com" ]
japhethobala@yahoo.com
1290bd036d60078d59132cb83ab6df11e6713035
231c768cbe3bc630fea37b38f4c152865cbdbc9f
/assig1/src/main/java/ro/utcn/sd/btn/assig1/persistence/jpa/HibernateUserRepository.java
c17258cb387942884ab0ae4de0a3d7e33f5da60a
[]
no_license
utcn-sd-serban/assignment-1-BeatriceNita
d308138701cb7c56d454f309f172ce4c62a68c41
777d167ddc6187bf9a626d2a42f2908256de0607
refs/heads/master
2020-04-27T08:03:11.356068
2019-03-31T23:05:59
2019-03-31T23:05:59
174,157,561
0
0
null
2019-04-01T18:02:14
2019-03-06T14:10:39
Java
UTF-8
Java
false
false
1,400
java
package ro.utcn.sd.btn.assig1.persistence.jpa; import lombok.RequiredArgsConstructor; import ro.utcn.sd.btn.assig1.model.User; import ro.utcn.sd.btn.assig1.persistence.api.UserRepository; import javax.persistence.EntityManager; import javax.persistence.criteria.CriteriaBuilder; import javax.persistence.criteria.CriteriaQuery; import java.util.List; import java.util.Optional; @RequiredArgsConstructor public class HibernateUserRepository implements UserRepository { private final EntityManager entityManager; @Override public List<User> findAll() { CriteriaBuilder builder = entityManager.getCriteriaBuilder(); CriteriaQuery<User> query = builder.createQuery(User.class); query.select(query.from(User.class)); return entityManager.createQuery(query).getResultList(); } @Override public User save(User user) { if (user.getId() == 0) { entityManager.persist(user); return user; } else { return entityManager.merge(user); } } @Override public void remove(User user) { entityManager.remove(user); } @Override public Optional<User> findById(int id) { return Optional.ofNullable(entityManager.find(User.class, id)); } @Override public Optional<User> findUserInfo(String userName, String password) { return null; } }
[ "beatrice.nita98@yahoo.com" ]
beatrice.nita98@yahoo.com
34795c193b485a405525d22f8e368d4d3d15f20f
7ce021205687faad6654e04623b3cd49bdad452d
/roimeshrepo/roi-framework/src/main/java/com/getusroi/eventframework/abstractbean/util/ConnectionConfigurationException.java
73e2861079dc3fee56f6e7c28f6774773c4d2c17
[]
no_license
venkateshm383/roibackupprojects
4ad9094d25dad9fe60da5f557069ecb36f627e4d
a78467028950c8eafdd662113870f633e61304d2
refs/heads/master
2020-04-18T21:52:10.308611
2016-09-02T04:32:21
2016-09-02T04:32:21
67,107,627
1
0
null
null
null
null
UTF-8
Java
false
false
740
java
package com.getusroi.eventframework.abstractbean.util; public class ConnectionConfigurationException extends Exception{ /** * */ private static final long serialVersionUID = 2505029066803425492L; public ConnectionConfigurationException() { super(); } public ConnectionConfigurationException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { super(message, cause, enableSuppression, writableStackTrace); } public ConnectionConfigurationException(String message, Throwable cause) { super(message, cause); } public ConnectionConfigurationException(String message) { super(message); } public ConnectionConfigurationException(Throwable cause) { super(cause); } }
[ "you@example.com" ]
you@example.com
2b4ad7aa35c0e5400d464011894b99998f33ffee
60f8e6b391a1cb81c40675ab0f11f7943d8eff92
/src/main/java/com/dzh/trial/trial/commonStateMachine/core/AbstractGuard.java
b15e68f1803355f13ece5705d2f77828f330141f
[]
no_license
aduzihan1/trial
72433a13edc45484dbd65ea53fda77a70a38b933
a08ca4e2ab443577311aad45aa0399e74a7b4450
refs/heads/master
2022-07-11T13:43:07.488055
2019-08-12T02:51:16
2019-08-12T02:51:16
161,616,862
0
0
null
2022-06-29T17:06:32
2018-12-13T09:40:35
Java
UTF-8
Java
false
false
801
java
package com.dzh.trial.trial.commonStateMachine.core; import com.dzh.trial.trial.commonStateMachine.exception.StateMachineBizException; import org.springframework.statemachine.StateContext; import org.springframework.statemachine.guard.Guard; public abstract class AbstractGuard<S, E> implements Guard<S, E> { @Override public boolean evaluate(StateContext<S, E> context) { StateMachineContext stateMachineContext = (StateMachineContext) context.getMessage().getHeaders().get("context"); try { return evaluate(stateMachineContext); } catch (Exception e) { stateMachineContext.setException(e); throw new StateMachineBizException(e); } } abstract public boolean evaluate(StateMachineContext stateMachineContext); }
[ "1sfgbbibi" ]
1sfgbbibi
fe281df7dd33159ead0386ecf1ce3c41d26552cf
a88a1be68130ea30cadf9bb7fd4bc096d15cbf3b
/src/java/fr/rgrin/projetqcm/ejb/init/InitAjoutQcm.java
0561e4e90f909032dadf17aa5746ebe7405a8e60
[]
no_license
richard-grin/qcmjavaee8
eea6295a37fbdfe536cfb776106e7672b513e7f6
d54ef45c8ac8fb61bb55146133fddef5859a8aa4
refs/heads/master
2020-04-13T18:25:43.774051
2019-04-22T11:36:36
2019-04-22T11:36:36
163,373,876
0
0
null
null
null
null
UTF-8
Java
false
false
1,708
java
package fr.rgrin.projetqcm.ejb.init; import fr.rgrin.projetqcm.ejb.QuestionFacade; import fr.rgrin.projetqcm.entite.Question; import fr.rgrin.projetqcm.entite.Questionnaire; import fr.rgrin.projetqcm.entite.Reponse; import javax.ejb.EJB; import javax.ejb.Stateless; import javax.ejb.TransactionAttribute; import javax.ejb.TransactionAttributeType; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; /** * Ajouter des QCMs à l'initialisation de l'application. * * @author grin */ @Stateless public class InitAjoutQcm { @PersistenceContext(unitName = "qcmPU") private EntityManager emQcm; @EJB QuestionFacade questionFacade; @TransactionAttribute(TransactionAttributeType.REQUIRES_NEW) public void ajoutQcms() { System.out.println("Ajout des données pour les QCM"); if (questionFacade.nbQuestions() == 0) { Questionnaire questionnaire = new Questionnaire("Bases de Java 1"); Question q1 = new Question("Java est un langage", false); q1.ajouterReponse(new Reponse("objet", true)); q1.ajouterReponse(new Reponse("procédural", false)); q1.ajouterReponse(new Reponse("fonctionnel", false)); Question q2 = new Question("Java permet d'écrire des applications"); q2.ajouterReponse(new Reponse("Web", true)); q2.ajouterReponse(new Reponse("desktop", true)); q2.ajouterReponse(new Reponse("système", false)); q2.ajouterReponse(new Reponse("embarquées", true)); questionnaire.ajouterQuestion(q1); questionnaire.ajouterQuestion(q2); emQcm.persist(q1); emQcm.persist(q2); emQcm.persist(questionnaire); } } }
[ "grin@unice.fr" ]
grin@unice.fr
30276ea43fe42413f6ae127bfcd03df2af59d88d
7ad5d95ca6f9a84059bf0dc50de8747b071a61a3
/xestate/android/app/src/main/java/com/xestate/MainApplication.java
7d4ef94ea6b58e8d14e7899dd9841ec9eb366cee
[]
no_license
gmae199boy/xestate
7716c96fcdb91055eb1ebcf07375f44fa649108e
6cf3103ebc34549e0cee882d56e9410b8b010e6e
refs/heads/master
2022-12-18T18:10:57.537272
2020-09-22T00:47:24
2020-09-22T00:47:24
289,391,503
2
2
null
2020-09-11T05:49:47
2020-08-22T00:36:56
JavaScript
UTF-8
Java
false
false
2,597
java
package com.xestate; import android.app.Application; import android.content.Context; import com.facebook.react.PackageList; import com.facebook.react.ReactApplication; import com.facebook.react.ReactInstanceManager; import com.facebook.react.ReactNativeHost; import com.facebook.react.ReactPackage; import com.facebook.soloader.SoLoader; import java.lang.reflect.InvocationTargetException; import java.util.List; public class MainApplication extends Application implements ReactApplication { private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { @Override public boolean getUseDeveloperSupport() { return BuildConfig.DEBUG; } @Override protected List<ReactPackage> getPackages() { @SuppressWarnings("UnnecessaryLocalVariable") List<ReactPackage> packages = new PackageList(this).getPackages(); // Packages that cannot be autolinked yet can be added manually here, for example: // packages.add(new MyReactNativePackage()); return packages; } @Override protected String getJSMainModuleName() { return "index"; } }; @Override public ReactNativeHost getReactNativeHost() { return mReactNativeHost; } @Override public void onCreate() { super.onCreate(); SoLoader.init(this, /* native exopackage */ false); initializeFlipper(this, getReactNativeHost().getReactInstanceManager()); } /** * Loads Flipper in React Native templates. Call this in the onCreate method with something like * initializeFlipper(this, getReactNativeHost().getReactInstanceManager()); * * @param context * @param reactInstanceManager */ private static void initializeFlipper( Context context, ReactInstanceManager reactInstanceManager) { if (BuildConfig.DEBUG) { try { /* We use reflection here to pick up the class that initializes Flipper, since Flipper library is not available in release mode */ Class<?> aClass = Class.forName("com.xestate.ReactNativeFlipper"); aClass .getMethod("initializeFlipper", Context.class, ReactInstanceManager.class) .invoke(null, context, reactInstanceManager); } catch (ClassNotFoundException e) { e.printStackTrace(); } catch (NoSuchMethodException e) { e.printStackTrace(); } catch (IllegalAccessException e) { e.printStackTrace(); } catch (InvocationTargetException e) { e.printStackTrace(); } } } }
[ "kim88594544@gmail.com" ]
kim88594544@gmail.com
e1b46fc9bb9cf831533f76743dbe5b72182ddf50
b440f612e9e5320f6cb18fdfaf908a2add647d31
/dealer/src/main/java/com/jdc/themis/dealer/web/domain/QueryDealerPostSalesResponse.java
85c9a9611c826d6bdd9b3b67e1f2238176883a6a
[]
no_license
darwink/Themis
a9480e21523cbd7a0ac9f59cb2ac6c2915e22b35
3e274fbcad708a28ec9696e2632e985536afe318
refs/heads/master
2021-01-23T04:23:19.732922
2014-07-13T17:57:12
2014-07-13T17:57:12
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,171
java
package com.jdc.themis.dealer.web.domain; import java.io.Serializable; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import org.apache.commons.lang.builder.ToStringBuilder; import org.apache.commons.lang.builder.ToStringStyle; import com.google.common.collect.Lists; @XmlRootElement @XmlAccessorType(XmlAccessType.FIELD) public class QueryDealerPostSalesResponse implements Serializable { private static final long serialVersionUID = 1L; private String reportName; @XmlElement(name = "report") private List<ReportDealerPostSalesDataList> detail = Lists.newArrayList(); public String getReportName() { return reportName; } public void setReportName(String reportName) { this.reportName = reportName; } public List<ReportDealerPostSalesDataList> getDetail() { return detail; } public String toString() { return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE) .append("reportName", reportName).append("report", detail) .getStringBuffer().toString(); } }
[ "darwink1986@163.com" ]
darwink1986@163.com
67157fd05c254df4eab61475ca82f88deff0dcdc
9b8aaf3bf7a788f19266cbfd3b2955e14241a917
/angelina.gorbachevskaya/MavenChat/src/main/java/Client/Producer/Producer.java
50c97bcdf1e05ff4e7c5e502295f4bf8ab046c5c
[]
no_license
m91snik/java_lessons
de4eba69d40f8998279c67e67a5f54800ffc2072
e3028a8a7f25a56e13a9d94e2511d4298379f819
refs/heads/master
2020-05-26T06:13:48.987946
2015-12-21T16:56:38
2015-12-21T16:56:38
37,031,396
4
2
null
null
null
null
UTF-8
Java
false
false
206
java
package Client.Producer; import Utils.UserID; /** * Created by Ангелина on 05.09.2015. */ public interface Producer<E, U extends UserID> { public E produce(); public boolean isStop(); }
[ "my_e-mail_1.1@mail.ru" ]
my_e-mail_1.1@mail.ru
78193533b8920bc975ca4d286ebd5b0630f87c7a
22e6b86617aecddffefa43dadd38845358441d65
/hadoop/wiki-pagerank/src/xmlTools/XmlInputFormat.java
d03eb0dfb0d692637acdf28abb829b8c4ec50d3e
[]
no_license
cmantas/asap.cslab
18d37c17e8dc6aa627d2a65aa763fe1e7c45604b
e397ab340c8e3ff32c1a182691eb043ab76ec0ca
refs/heads/master
2021-01-21T11:45:00.547924
2016-11-21T10:45:38
2016-11-21T10:45:38
26,119,919
2
1
null
null
null
null
UTF-8
Java
false
false
5,429
java
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF 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 * * 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 xmlTools; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.fs.FSDataInputStream; import org.apache.hadoop.fs.FileSystem; import org.apache.hadoop.fs.Path; import org.apache.hadoop.io.DataOutputBuffer; import org.apache.hadoop.io.LongWritable; import org.apache.hadoop.io.Text; import org.apache.hadoop.mapreduce.InputSplit; import org.apache.hadoop.mapreduce.RecordReader; import org.apache.hadoop.mapreduce.TaskAttemptContext; import org.apache.hadoop.mapreduce.lib.input.FileSplit; import org.apache.hadoop.mapreduce.lib.input.TextInputFormat; import java.io.IOException; /** * Reads records that are delimited by a specific begin/end tag. */ public class XmlInputFormat extends TextInputFormat { public static final String START_TAG_KEY = "xmlinput.start"; public static final String END_TAG_KEY = "xmlinput.end"; @Override public RecordReader<LongWritable, Text> createRecordReader(InputSplit split, TaskAttemptContext context) { try { return new XmlRecordReader((FileSplit) split, context); } catch (IOException e) { throw new RuntimeException("TODO : refactor this..."); } } /** * XMLRecordReader class to read through a given xml document to output xml * blocks as records as specified by the start tag and end tag */ public static class XmlRecordReader extends RecordReader<LongWritable, Text> { private final byte[] startTag; private final byte[] endTag; private final long start; private final long end; private final FSDataInputStream fsin; private final DataOutputBuffer buffer = new DataOutputBuffer(); private LongWritable key = new LongWritable(); private Text value = new Text(); public XmlRecordReader(FileSplit split, TaskAttemptContext context) throws IOException { Configuration conf = context.getConfiguration(); startTag = conf.get(START_TAG_KEY).getBytes("utf-8"); endTag = conf.get(END_TAG_KEY).getBytes("utf-8"); // open the file and seek to the start of the split start = split.getStart(); end = start + split.getLength(); Path file = split.getPath(); FileSystem fs = file.getFileSystem(conf); fsin = fs.open(split.getPath()); fsin.seek(start); } @Override public void initialize(InputSplit split, TaskAttemptContext context) throws IOException, InterruptedException { } @Override public boolean nextKeyValue() throws IOException, InterruptedException { if (fsin.getPos() < end) { if (readUntilMatch(startTag, false)) { try { buffer.write(startTag); if (readUntilMatch(endTag, true)) { key.set(fsin.getPos()); value.set(buffer.getData(), 0, buffer.getLength()); return true; } } finally { buffer.reset(); } } } return false; } @Override public LongWritable getCurrentKey() throws IOException, InterruptedException { return key; } @Override public Text getCurrentValue() throws IOException, InterruptedException { return value; } @Override public void close() throws IOException { fsin.close(); } @Override public float getProgress() throws IOException { return (fsin.getPos() - start) / (float) (end - start); } private boolean readUntilMatch(byte[] match, boolean withinBlock) throws IOException { int i = 0; while (true) { int b = fsin.read(); // end of file: if (b == -1) return false; // save to buffer: if (withinBlock) buffer.write(b); // check if we're matching: if (b == match[i]) { i++; if (i >= match.length) return true; } else i = 0; // see if we've passed the stop point: if (!withinBlock && i == 0 && fsin.getPos() >= end) return false; } } } }
[ "cmantas@cslab.ece.ntua.gr" ]
cmantas@cslab.ece.ntua.gr
256b872d48b5df00df0d77df8e0e53a82e588e78
8f7ba1eca7131253f506068b8f058530ca4ffe45
/src/test/java/org/hashlang/basetests/AbstractCodeTest.java
f05361b036b68148ff94eeb3c7dd8140b770aacf
[]
no_license
tarruda/hashlanguage
24f1f8322f17a2450416fccc8895eab65caddf04
522845e1e7005669cb97d63adf9a65defceb79d8
refs/heads/master
2021-03-12T20:38:15.691251
2012-06-06T16:31:47
2012-06-06T16:31:47
null
0
0
null
null
null
null
UTF-8
Java
false
false
716
java
package org.hashlang.basetests; import org.hashlang.runtime.AppRuntime; import org.hashlang.runtime.Factory; import org.hashlang.runtime.Module; import org.hashlang.util.Constants; import org.junit.Before; public abstract class AbstractCodeTest { public static final AppRuntime testRuntime; static { testRuntime = new AppRuntime(); } protected Module context; protected abstract Object evaluate(String expression); protected abstract Object evaluate(String expression, Class expectedException); @Before public void setup() { context = Factory.createModule(); context.put(Constants.CLASS, testRuntime.getClassHandler()); context.put(Constants.IMPORT, testRuntime.getImportHandler()); } }
[ "tpadilha84@gmail.com" ]
tpadilha84@gmail.com
0bb91963d610954bc57650465468fcbcaf6afab2
c3f6c6b2fb91568d3605cff048c7e550ed974015
/app/src/test/java/com/example/vishal/dcpgate/ExampleUnitTest.java
816bf3541d70cba1e7b14f20b077da975f203506
[]
no_license
vspole/DerbyCityParkingGateAttendant
34f1d31275be861f23e4a157749cf4094cdf24dc
acce9b5cc4101e1db8540610cc91b10e5648000b
refs/heads/master
2020-05-16T19:26:02.829318
2019-04-24T15:47:27
2019-04-24T15:47:27
183,260,169
0
0
null
null
null
null
UTF-8
Java
false
false
404
java
package com.example.vishal.dcpgate; 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); } }
[ "vishal.polepalli@gmail.com" ]
vishal.polepalli@gmail.com
9d1572d6fd7cd92e5068f65974f5c36836f045f7
621daac9194d60b93789909d4c1e1bbff03f2004
/src/servlet/AdminAction.java
9dae1c8b71fdb9eaad61fec4d9b1baddff579bd6
[]
no_license
alfonsodipace/progetto1
d1e5c39197244bac48c52dad921eddc9e304a0ca
c1a7100a6a2074e078df36849a5893fc00ce4550
refs/heads/master
2021-06-27T20:49:20.135158
2017-09-13T11:04:22
2017-09-13T11:04:22
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,926
java
package servlet; import java.io.IOException; import java.sql.SQLException; import javax.servlet.RequestDispatcher; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import bean.CarrelloBeanDao; import bean.OrdinaBean; import bean.OrdinaBeanDao; import bean.PagamentoBean; import bean.PagamentoBeanDao; import bean.ProdottoBean; import bean.ProdottoBeanDao; /** * Servlet implementation class AdminAction */ @WebServlet("/AdminAction") public class AdminAction extends HttpServlet { private static final long serialVersionUID = 1L; /** * @see HttpServlet#HttpServlet() */ public AdminAction() { super(); // TODO Auto-generated constructor stub } /** * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response) */ protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // TODO Auto-generated method stub // response.getWriter().append("Served at: ").append(request.getContextPath()); String action = request.getParameter("action"); if(action.equals("rimuoviProdotto")) { int idProdotto = Integer.parseInt(request.getParameter("idprodotto")); String tipo = request.getParameter("tipo"); ProdottoBeanDao bndao = new ProdottoBeanDao(); ProdottoBean bn = new ProdottoBean(); bn.setIdProdotto(idProdotto); bn.setTipo(tipo); try { bndao.doDelete(bn); if(tipo.equals("bibita")){ RequestDispatcher dispatcher = getServletContext().getRequestDispatcher("/Bibite.jsp"); dispatcher.forward(request, response); } if(tipo.equals("panino")){ RequestDispatcher dispatcher = getServletContext().getRequestDispatcher("/Panini.jsp"); dispatcher.forward(request, response); } if(tipo.equals("rosticceria")){ RequestDispatcher dispatcher = getServletContext().getRequestDispatcher("/Rosticceria.jsp"); dispatcher.forward(request, response); } if(tipo.equals("dolce")){ RequestDispatcher dispatcher = getServletContext().getRequestDispatcher("/Dolci.jsp"); dispatcher.forward(request, response); } } catch (SQLException e) { // TODO Auto-generated catch block e.printStackTrace(); } } else if(action.equals("evadiOrdine")){ CarrelloBeanDao daoCar = new CarrelloBeanDao(); OrdinaBeanDao daoOrd = new OrdinaBeanDao(); OrdinaBean ordBea = new OrdinaBean(); PagamentoBean pag = new PagamentoBean(); PagamentoBeanDao daop = new PagamentoBeanDao(); int idOrdine = Integer.parseInt(request.getParameter("idordine")); String email = request.getParameter("email"); int idCarrello=0; try { idCarrello = daoCar.doRetrieveIDByEmail(email); ordBea=daoOrd.doRetrieveByeId(idOrdine); pag.setDataAcquisto(ordBea.getDataOrdine()); pag.setIdCarrello(idCarrello); pag.setEmail(email); daop.doSave(pag); daoOrd.evadiOrdine(idOrdine); RequestDispatcher dispatcher = getServletContext().getRequestDispatcher("/GestisciOrdini.jsp"); dispatcher.forward(request, response); } catch (SQLException e1) { // TODO Auto-generated catch block } } // REINDIRIZZA ALLA PAGINA DI MODIFICA PRODOTTO else if(action.equals("modifica")) { int idProd = Integer.parseInt(request.getParameter("idprodotto")); request.setAttribute("idProd", idProd); RequestDispatcher dispatcher = getServletContext().getRequestDispatcher("/SetProdotto.jsp"); dispatcher.forward(request, response); } } /** * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response) */ protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // TODO Auto-generated method stub doGet(request, response); } }
[ "30909407+marko0205@users.noreply.github.com" ]
30909407+marko0205@users.noreply.github.com
d358e47870e6dd0615717bfe1a3539d561270441
03d04f0e30d1a37c347008aa7d70cb699ac28694
/base_demo_01/src/main/java/com/dongck/impl/TTeacherServiceImpl.java
7e7e0ba799c5b9f3126f54da044304389b84fe73
[]
no_license
dongck/springboot
f2028e9b9562fe83aec4347998152e4d4558cdcb
addb1808341d0706b3269731656ef825e50e5a48
refs/heads/master
2020-04-25T14:07:30.739029
2019-03-06T10:46:24
2019-03-06T10:46:24
172,830,586
0
0
null
null
null
null
UTF-8
Java
false
false
1,433
java
package com.dongck.impl; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Isolation; import org.springframework.transaction.annotation.Propagation; import org.springframework.transaction.annotation.Transactional; import com.dongck.dao.service.JpaTeacherRepository; import com.dongck.pojo.Teacher; import com.dongck.service.TTeacherService; import com.dongck.service.TeacherService; @Service public class TTeacherServiceImpl implements TTeacherService { @Autowired private JpaTeacherRepository jpaTeacherRepository; @Override public List<Teacher> getTeachers() { return jpaTeacherRepository.findAll(); } @Override @Transactional(isolation=Isolation.READ_COMMITTED,propagation=Propagation.REQUIRED) public Teacher insert() { Teacher t = new Teacher(); t.setAge(19); t.setName("zs"); return jpaTeacherRepository.saveAndFlush(t); } @Override public Teacher update(Long id, String name) { Teacher t = jpaTeacherRepository.findById(id).get(); t.setName(name); System.out.println("########################################################"); insert(); System.out.println("########################################################"); return jpaTeacherRepository.saveAndFlush(t); } @Override public void del(Long id) { jpaTeacherRepository.deleteById(id); } }
[ "525880573@qq.com" ]
525880573@qq.com
28b0855aea2ddd2d01e681796a0ae004cb488f73
a8c782105d28bb66e2eb19bad16709702be130f1
/src/supplment_examples/斐波那契.java
da1af562e56bfc80f7ec078b32ec5acc61f975ff
[]
no_license
naruto227/JZOF
a2c678f30bc7fa72c2b9d10cb67d4a6f1b219d03
18d4e924eda3ee9255b3cb7acabb71c37884d4ae
refs/heads/master
2020-06-10T15:52:08.542924
2017-01-26T15:00:26
2017-01-26T15:00:26
75,946,358
0
0
null
null
null
null
UTF-8
Java
false
false
1,946
java
package supplment_examples; import java.util.Scanner; /** * Created by hzq on 16-12-26. */ /*f(n) = f(n-1) + f(n-2) * 1 1 2 3 5 8 13 21 34 * 下标从0开始计*/ public class 斐波那契 { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); while (scanner.hasNextInt()) { int n = scanner.nextInt(); new digitalLaw().solution(n); for (int i = 0; i < n; i++) { System.out.print(fibonacci(i) + " "); } System.out.println(); for (int i = 0; i < n; i++) { System.out.print(fibonacci1(i) + " "); } System.out.println(); for (int i = 0; i < n; i++) { System.out.print(fibonacci2(i) + " "); } System.out.println(); } } //递归 public static int fibonacci(int n) { if (n < 2) { return 1; } else { return fibonacci(n - 1) + fibonacci(n - 2); } } //指针 public static int fibonacci1(int n) { if (n < 2) { return 1; } int f1 = 1, f2 = 1; n--; while (n-- != 0) { f1 = f1 + f2; f2 = f1 - f2; } return f1; } public static int fibonacci2(int n) { if (n < 2) { return 1; } int f1 = 1, f2 = 1, res = 0; n--; while (n-- != 0) { res = f1 + f2; f2 = f1; f1 = res; } return res; } } /*输出30个如下规律的数列: 1 3 6 10 15 21…… n*(n+1)/2*/ class digitalLaw { public void solution(int num) { if (num < 1) { return; } else { for (int i = 1; i <= num; i++) { System.out.print(i * (i + 1) / 2 + " "); } } System.out.println(); } }
[ "huangzq30@163.com" ]
huangzq30@163.com
3f872cf28fc1bec57b1485937b65670e45cc4b77
7388eb3c354ec0397c09846ee0f17e810c128b60
/MachineModel.java
80e0b2f648447de33c140fcf5959ab6d34275962
[]
no_license
achen95/Computer-Simulator
a2f53d1ba95ed06a365e44456205348cf6570499
dea2a9138e60cd40f8037dddbad6f701badb2265
refs/heads/master
2021-04-29T03:13:49.306543
2017-01-04T19:14:41
2017-01-04T19:14:41
78,044,770
0
0
null
null
null
null
UTF-8
Java
false
false
11,183
java
package project; import java.util.Map; import java.util.TreeMap; public class MachineModel { public final Map<Integer, Instruction> INSTRUCTIONS = new TreeMap(); private CPU cpu = new CPU(); private Memory memory = new Memory(); private HaltCallback callback; private Job currentJob; Job[] jobs = new Job[2]; Code code = new Code(); public MachineModel() { this(() -> System.exit(0)); } public MachineModel(HaltCallback cb) { callback = cb; //INSTRUCTION_MAP entry for "ADDI" INSTRUCTIONS.put(0xA, arg -> { cpu.setAccumulator(cpu.getAccumulator() + arg); cpu.incrementIP(); }); //INSTRUCTION_MAP entry for "ADD" INSTRUCTIONS.put(0xB, arg -> { int arg1 = memory.getData(cpu.getMemoryBase()+arg); cpu.setAccumulator(cpu.getAccumulator() + arg1); cpu.incrementIP(); }); //INSTRUCTION_MAP entry for "ADDN" INSTRUCTIONS.put(0xC, arg -> { int arg1 = memory.getData(cpu.getMemoryBase()+arg); int arg2 = memory.getData(cpu.getMemoryBase()+arg1); cpu.setAccumulator(cpu.getAccumulator() + arg2); cpu.incrementIP(); }); //INSTRUCTION_MAP entry for "SUBI" INSTRUCTIONS.put(0xD, arg -> { cpu.setAccumulator(cpu.getAccumulator() - arg); cpu.incrementIP(); }); //INSTRUCTION_MAP entry for "SUB" INSTRUCTIONS.put(0xE, arg -> { int arg1 = memory.getData(cpu.getMemoryBase() + arg); cpu.setAccumulator(cpu.getAccumulator() - arg1); cpu.incrementIP(); }); //INSTRUCTION_MAP entry for "SUBN" INSTRUCTIONS.put(0xF, arg -> { int arg1 = memory.getData(cpu.getMemoryBase()+arg); int arg2 = memory.getData(cpu.getMemoryBase()+arg1); cpu.setAccumulator(cpu.getAccumulator() - arg2); cpu.incrementIP(); }); //INSTRUCTION_MAP entry for "MULI" INSTRUCTIONS.put(0x10, arg -> { cpu.setAccumulator(cpu.getAccumulator() * arg); cpu.incrementIP(); }); //INSTRUCTION_MAP entry for "MUL" INSTRUCTIONS.put(0x11, arg -> { int arg1 = memory.getData(cpu.getMemoryBase() + arg); cpu.setAccumulator(cpu.getAccumulator() * arg1); cpu.incrementIP(); }); //INSTRUCTION_MAP entry for "MULN" INSTRUCTIONS.put(0x12, arg -> { int arg1 = memory.getData(cpu.getMemoryBase()+arg); int arg2 = memory.getData(cpu.getMemoryBase()+arg1); cpu.setAccumulator(cpu.getAccumulator() * arg2); cpu.incrementIP(); }); //INSTRUCTION_MAP entry for "DIVI" INSTRUCTIONS.put(0x13, arg -> { if (arg == 0) { throw new DivideByZeroException("Cannot divide by zero"); } cpu.setAccumulator(cpu.getAccumulator() / arg); cpu.incrementIP(); }); //INSTRUCTION_MAP entry for "DIV" INSTRUCTIONS.put(0x14, arg -> { int arg1 = memory.getData(cpu.getMemoryBase() + arg); if (arg1 == 0) { throw new DivideByZeroException("Cannot divide by zero"); } cpu.setAccumulator(cpu.getAccumulator() / arg1); cpu.incrementIP(); }); //INSTRUCTION_MAP entry for "DIVN" INSTRUCTIONS.put(0x15, arg -> { int arg1 = memory.getData(cpu.getMemoryBase()+arg); int arg2 = memory.getData(cpu.getMemoryBase()+arg1); if (arg2 == 0) { throw new DivideByZeroException("Cannot divide by zero"); } cpu.setAccumulator(cpu.getAccumulator() / arg2); cpu.incrementIP(); }); //INSTRUCTION_MAP entry for "NOP" INSTRUCTIONS.put(0x0, arg -> { cpu.incrementIP(); }); //INSTRUCTION_MAP entry for "LODI" INSTRUCTIONS.put(0x1, arg -> { cpu.setAccumulator(arg); cpu.incrementIP(); }); //INSTRUCTION_MAP entry for "LOD" INSTRUCTIONS.put(0x2, arg -> { int arg1 = memory.getData(cpu.getMemoryBase()+arg); cpu.setAccumulator(arg1); cpu.incrementIP(); }); //INSTRUCTION_MAP entry for "LODN" INSTRUCTIONS.put(0x3, arg -> { int arg1 = memory.getData(cpu.getMemoryBase()+arg); int arg2 = memory.getData(cpu.getMemoryBase()+arg1); cpu.setAccumulator(arg2); cpu.incrementIP(); }); //INSTRUCTION_MAP entry for "STO" INSTRUCTIONS.put(0x4, arg -> { memory.setData(arg+cpu.getMemoryBase(), cpu.getAccumulator()); cpu.incrementIP(); }); //INSTRUCTION_MAP entry for "STON" INSTRUCTIONS.put(0x5, arg -> { int arg1 = memory.getData(arg+cpu.getMemoryBase()); memory.setData(arg1+cpu.getMemoryBase(), cpu.getAccumulator()); cpu.incrementIP(); }); //INSTRUCTION_MAP entry for "JMPI" INSTRUCTIONS.put(0x6, arg -> { cpu.setInstructionPointer(cpu.getInstructionPointer()+arg); }); //INSTRUCTION_MAP entry for "JUMP" INSTRUCTIONS.put(0x7, arg -> { int arg1 = memory.getData(arg+cpu.getMemoryBase()); cpu.setInstructionPointer(cpu.getInstructionPointer()+arg1); }); //INSTRUCTION_MAP entry for "JMZI" INSTRUCTIONS.put(0x8, arg -> { if (cpu.getAccumulator() == 0) { cpu.setInstructionPointer(cpu.getInstructionPointer()+arg); } else { cpu.incrementIP(); } }); //INSTRUCTION_MAP entry for "JMPZ" INSTRUCTIONS.put(0x9, arg -> { if (cpu.getAccumulator() == 0) { int arg1 = memory.getData(arg+cpu.getMemoryBase()); cpu.setInstructionPointer(cpu.getInstructionPointer()+arg1); } else { cpu.incrementIP(); } }); //INSTRUCTION_MAP entry for "ANDI" //This relates to the && operation in C: non-zero values //can be treated as true and 0 as false. a && b is only true //if both a and b are true. INSTRUCTIONS.put(0x16, arg -> { if (cpu.getAccumulator() != 0 && arg != 0) { cpu.setAccumulator(1); } else { cpu.setAccumulator(0); } cpu.incrementIP(); }); //INSTRUCTION_MAP entry for "AND" INSTRUCTIONS.put(0x17, arg -> { int arg1 = memory.getData(arg + cpu.getMemoryBase()); if (cpu.getAccumulator() != 0 && arg1 != 0) { cpu.setAccumulator(1); } else { cpu.setAccumulator(0); } cpu.incrementIP(); }); //INSTRUCTION_MAP entry for "NOT" //this corresponds to exchanging true and false. //Increment instructionPointer. INSTRUCTIONS.put(0x18, arg -> { if (cpu.getAccumulator() != 0) { cpu.setAccumulator(0); } else { cpu.setAccumulator(1); } cpu.incrementIP(); }); //INSTRUCTION_MAP entry for "CMPL" // If the indicated memory value is negative this signals //true in the accumulator, otherwise false. INSTRUCTIONS.put(0x19, arg -> { int arg1 = memory.getData(arg + cpu.getMemoryBase()); if (arg1 < 0) { cpu.setAccumulator(1); } else { cpu.setAccumulator(0); } cpu.incrementIP(); }); //INSTRUCTION_MAP entry for "CMPZ" //If the indicated memory value is zero this signals true in //the accumulator, otherwise false. INSTRUCTIONS.put(0x1A, arg -> { int arg1 = memory.getData(arg + cpu.getMemoryBase()); if (arg1 == 0) { cpu.setAccumulator(1); } else { cpu.setAccumulator(0); } cpu.incrementIP(); }); //INSTRUCTION_MAP entry for "HALT" INSTRUCTIONS.put(0x1F, arg -> { callback.halt(); }); INSTRUCTIONS.put(0x1B, arg -> { int target = memory.getData(cpu.getMemoryBase() + arg); cpu.setInstructionPointer(currentJob.getStartcodeIndex()+target); }); for (int i = 0; i < jobs.length; i++) { jobs[i] = new Job(); } currentJob = jobs[0]; jobs[0].setStartcodeIndex(0); jobs[0].setStartmemoryIndex(0); jobs[1].setStartcodeIndex(Code.CODE_MAX/4); jobs[1].setStartmemoryIndex(Memory.DATA_SIZE/2); } int getAccumulator() { return cpu.getAccumulator(); } void setAccumulator(int accumulator) { cpu.setAccumulator(accumulator); } int getInstructionPointer() { return cpu.getInstructionPointer(); } void setInstructionPointer(int instructionPointer) { cpu.setInstructionPointer(instructionPointer); } int getMemoryBase() { return cpu.getMemoryBase(); } void setMemoryBase(int memoryBase) { cpu.setMemoryBase(memoryBase); } int[] getData() { return memory.getData(); } int getData(int index) { return memory.getData(index); } void setData(int index, int value) { memory.setData(index, value); } int getChangedIndex() { return memory.getChangedIndex(); } Instruction get(int instructionNum) { return (INSTRUCTIONS.get(instructionNum)); } void setCode(int i, int op, int arg) { code.setCode(i, op, arg); } Code getCode() { return code; } Job getCurrentJob() { return currentJob; } void setJob(int i) { if (i != 0 && i != 1) { throw new IllegalArgumentException ("Exception thrown!"); } currentJob.setCurrentAcc(cpu.getAccumulator()); currentJob.setCurrentIP(cpu.getInstructionPointer()); currentJob = jobs[i]; cpu.setAccumulator(currentJob.getCurrentIP()); cpu.setInstructionPointer(currentJob.getCurrentAcc()); cpu.setMemoryBase(currentJob.getStartmemoryIndex()); } States getCurrentState() { return currentJob.getCurrentState(); } void setCurrentState(States currentState) { currentJob.setCurrentState(currentState); } void clearJob() { memory.clear(currentJob.getStartmemoryIndex(), currentJob.getStartmemoryIndex() + Memory.DATA_SIZE/2); code.clear(currentJob.getStartcodeIndex(), currentJob.getStartcodeIndex() + currentJob.getCodeSize()); setAccumulator(0); setInstructionPointer(currentJob.getStartcodeIndex()); currentJob.reset(); } void step() { try { int ip = cpu.getInstructionPointer(); if (ip < currentJob.getStartcodeIndex() || ip >= currentJob.getStartcodeIndex()+currentJob.getCodeSize()) { throw new CodeAccessException ("problem with instruction pointer!"); } int opcode = code.getOp(ip); int arg = code.getArg(ip); get(opcode).execute(arg); } catch(Exception e){ callback.halt(); throw e; } } }
[ "noreply@github.com" ]
noreply@github.com
48a3d91a79acbcd3497f876d02a5cf51bde821e4
57f600c54fa1e0c8546f872ec00176b0253ae6c8
/src/main/java/bits/IntToBits.java
d8bfcc41321c25e206d2607a9c6a854ad567096d
[]
no_license
azee/algo
76e12b349ce2d013124e588a2eb86f104a0eec8a
ececfd6964d01ca1abc9585a7389755c267c9e45
refs/heads/master
2021-01-15T09:29:16.742970
2018-09-19T05:58:05
2018-09-19T05:58:05
30,700,429
2
0
null
null
null
null
UTF-8
Java
false
false
1,030
java
package bits; import java.util.ArrayList; import java.util.Collections; import java.util.List; /** * Created with IntelliJ IDEA. * User: azee * Date: 10/15/13 * Time: 1:41 AM */ public class IntToBits { public static void main(String ...args){ int value = 44; printBitsRecursive(value); List<Integer> bits = new ArrayList<Integer>(); while(value >= 1){ bits.add(value % 2); value = value / 2; } printBits(bits); } public static void printBits(List<Integer> bits){ Collections.reverse(bits); for(int bit : bits){ System.out.println(bit); } } public static void printBitsRecursive(int value){ if (value < 1) { return; } printBitsRecursive(value / 2); System.out.println(value % 2); } public static int countBits(int value){ if (value < 1) { return 0; } return countBits(value / 2) + (value % 2); } }
[ "azee@yandex-team.ru" ]
azee@yandex-team.ru
117286ce0969d8ff87a3b8e1c6ef99c5304a2d8e
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/30/30_56509d1504085dda3d447f9378b21e0ffc6c7709/FeederTests/30_56509d1504085dda3d447f9378b21e0ffc6c7709_FeederTests_t.java
ce9239d3d00d288bc5d5eae9f7ff37c24e067e6d
[]
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
17,162
java
package factory.test; import factory.FeederAgent; import factory.FeederAgent.DiverterState; import factory.FeederAgent.FeederState; import factory.FeederAgent.MyLaneState; import factory.FeederAgent.MyPartRequest; import factory.FeederAgent.MyPartRequestState; import factory.Part; import factory.interfaces.Lane; import factory.interfaces.Nest; import factory.test.mock.EventLog; import factory.test.mock.LoggedEvent; import factory.test.mock.MockGantry; import factory.test.mock.MockLane; import factory.test.mock.MockNest; import junit.framework.TestCase; public class FeederTests extends TestCase{ MyPartRequest mpr; FeederAgent feeder; MockLane top, bottom; MockGantry gantry; Part p1,p2; /** * Sets up the standard configuration for easy testing. */ @Override protected void setUp() throws Exception { top = new MockLane("top"); bottom = new MockLane("bottom"); gantry = new MockGantry("gantry"); feeder = new FeederAgent("Feeder",0, top, bottom, gantry, null); feeder.diverter = DiverterState.FEEDING_BOTTOM; // initial setting to test the switching of the lane diverter p1 = new Part("p1"); p2 = new Part("p2"); } /** * This test creates a feeder and tests its preconditions. * */ public void testPreconditions() { // Makes sure there aren't any parts in the feeder initially. assertEquals(feeder.requestedParts.size(),0); assertEquals(feeder.feederSlot,0); System.out.println("feeder name = " + feeder.getName()); assertEquals(feeder.getName(),"Feeder0"); } /** * This test makes sure that the Feeder's lanes are getting set up properly. **/ public void testSetUpLanesAndGantry() { // These lanes were set up in the preconditions test // assertEquals(feeder.topLane.lane.getName(),"top"); // assertEquals(feeder.bottomLane.lane.getName(),"bottom"); // // make sure topLane's state is initialized correctly assertEquals(feeder.topLane.state,FeederAgent.MyLaneState.EMPTY); //assertEquals(feeder.gantry.getName(),"gantry"); } /** Test the MESSAGES **/ public void testMsgEmptyNest(){ // Some initial setup MockNest n = new MockNest("n"); top.setNest(n); // send the message feeder.msgEmptyNest(n); // Check to see if lane receives appropriate message assertTrue("Lane should have been told msgIncreaseAmplitude(). Event log: " + top.log.toString(), top.log.containsString("msgIncreaseAmplitude()")); // Check to see if lane's jamstate gets set correctly assertEquals(feeder.topLane.jamState,FeederAgent.JamState.MIGHT_BE_JAMMED); // Now check to make sure that the feeder's scheduler is working properly feeder.pickAndExecuteAnAction(); // FURTHER TESTING HERE FOR THE NON-NORMATIVE CASE OF A PART BEING STUCK } public void testMsgNestWasDumped() { // scenario #1: the feeder dumps a nest because // the nest didn't have any good parts feeder.state = FeederAgent.FeederState.CONTAINS_PARTS; // send the message feeder.msgNestWasDumped(top); // Check to see if the lane's state changes properly assertEquals(feeder.topLane.state,FeederAgent.MyLaneState.NEST_SUCCESSFULLY_DUMPED); // Make sure that the Feeder's scheduler is working correctly feeder.pickAndExecuteAnAction(); assertEquals(feeder.topLane.state,FeederAgent.MyLaneState.CONTAINS_PARTS); // scenario #2: the feeder dumps a nest because it is trying to purge the lane feeder.state = FeederAgent.FeederState.OK_TO_PURGE; // send the message feeder.msgNestWasDumped(top); // Check to see if the lane's state changes properly assertEquals(feeder.topLane.state,FeederAgent.MyLaneState.NEST_SUCCESSFULLY_DUMPED); // Make sure that the Feeder's scheduler is working correctly feeder.pickAndExecuteAnAction(); assertEquals(feeder.topLane.state,FeederAgent.MyLaneState.PURGING); } public void testMsgLaneNeedsPart() { // some initial setup feeder.state = FeederAgent.FeederState.EMPTY; // SCENARIO #1: The Feeder is initially empty and receives a request for parts. // send the message feeder.msgLaneNeedsPart(p1, top); // Initial Parts Request State for(FeederAgent.MyPartRequest pr : feeder.requestedParts) { if (pr.pt == p1) { assertEquals(pr.state,FeederAgent.MyPartRequestState.NEEDED); } } // Now make sure scheduler works feeder.pickAndExecuteAnAction(); // Check to see if gantry receives appropriate message assertTrue("Gantry should have been told msgFeederNeedsPart(...). Event log: " + gantry.log.toString(), gantry.log.containsString("msgFeederNeedsPart(...)")); // Check to see if the feeder's state gets set correctly assertEquals(feeder.state,FeederAgent.FeederState.WAITING_FOR_PARTS); // Parts Request State after scheduler for(FeederAgent.MyPartRequest pr : feeder.requestedParts) { if (pr.pt == p1) { mpr = pr; assertEquals(pr.state,FeederAgent.MyPartRequestState.ASKED_GANTRY); } } // SCENARIO #2: The feeder is IMMEDIATELY sent a new request for parts, which happens often, as the feeder has 2 lanes. Part p2 = new Part("p2"); feeder.msgLaneNeedsPart(p2, top); // Initial Parts Request State for(FeederAgent.MyPartRequest pr : feeder.requestedParts) { if (pr.pt == p2) { assertEquals(pr.state,FeederAgent.MyPartRequestState.NEEDED); } } // Now make sure scheduler works feeder.pickAndExecuteAnAction(); assertTrue("The gantry should not have received another message.",gantry.log.size() == 1); // Parts Request State after scheduler- basically this should not change // from NEEDED b/c the feeder isn't ready to purge, and is thus not ready to ask the gantry for this part for(FeederAgent.MyPartRequest pr : feeder.requestedParts) { if (pr.pt == p2) { mpr = pr; assertEquals(pr.state,FeederAgent.MyPartRequestState.NEEDED); } } // SCENARIO #3: The feeder is ready to purge now // some initial setup: feeder.state = FeederAgent.FeederState.OK_TO_PURGE; //mpr.state = FeederAgent.MyPartRequestState.NEEDED; // I don't think this is necessary. feeder.topLane.part = mpr.pt; assertEquals(feeder.topLane.lane,mpr.lane); assertTrue(feeder.topLane.part != null); assertEquals(top,feeder.topLane.lane); // call the scheduler feeder.pickAndExecuteAnAction(); // Check to see if the lane receives appropriate message assertTrue("Lane should have been told msgPurge(). Event log: " + top.log.toString(), top.log.containsString("msgPurge()")); // and check the lane's state assertEquals(feeder.topLane.state,FeederAgent.MyLaneState.PURGING); } public void testMsgHereAreParts() { // some initial setup feeder.state = FeederAgent.FeederState.WAITING_FOR_PARTS; feeder.addMyPartRequest(p1,top,FeederAgent.MyPartRequestState.ASKED_GANTRY); // PART #1: The feeder receives the parts he asked for from the gantry. feeder.msgHereAreParts(p1); // The gantry has DELIVERED the part for(FeederAgent.MyPartRequest pr : feeder.requestedParts) { if (pr.pt == p1) { mpr = pr; // set a reference to the MyPartRequest assertEquals(pr.state,FeederAgent.MyPartRequestState.DELIVERED); } } // make sure the scheduler works feeder.pickAndExecuteAnAction(); // should remove the request from the list assertFalse(feeder.requestedParts.contains(mpr)); // the current part that is being fed into the lane assertEquals(feeder.currentPart,mpr.pt); if (feeder.bottomLane.lane == mpr.lane){ assertEquals(feeder.bottomLane.part,mpr.pt); } else { assertEquals(feeder.topLane.part,mpr.pt); } // make sure the feeder's state is updating correctly assertEquals(feeder.state,FeederAgent.FeederState.SHOULD_START_FEEDING); // PART #2: The feeder receives the parts he asked for from the gantry. feeder.diverter = DiverterState.FEEDING_BOTTOM; // to test the switching of the lane diverter feeder.pickAndExecuteAnAction(); assertEquals(feeder.diverter,DiverterState.FEEDING_TOP); // switches to feed the top because that is the lane we are feeding // PART #3: After the okayToPurgeTimer goes off, the feeder receives a request for new parts. feeder.state = FeederState.OK_TO_PURGE; // this gets called when the okayToPurgeTimer goes off } public void testMsgBadNest() { feeder.msgBadNest(top.getNest()); // send the msg assertEquals(feeder.topLane.state,MyLaneState.BAD_NEST); // check to see if initial state assignment works // check to see if the scheduler works feeder.pickAndExecuteAnAction(); // make sure the topLane receives the right message assertTrue("Lane should have been told msgDumpNest(). Event log: " + top.log.toString(), top.log.containsString("msgDumpNest()")); // and that the lane's state changes properly assertEquals(feeder.topLane.state,MyLaneState.TOLD_NEST_TO_DUMP); } /** This test tests the following scenario: * 1) Parts of type A are loaded into the top lane. * 2) Parts of type B are loaded into the bottom lane. * 3) Parts of type A are loaded into the top lane. * - Neither lane should purge, only the feeder. * - The lane diverter should switch and feed the Parts A into the top lane. */ public void testLaneSwitchCase1() { // some initial setup // feeder.state = FeederAgent.FeederState.WAITING_FOR_PARTS; feeder.msgLaneNeedsPart(p1, top); feeder.pickAndExecuteAnAction(); assertEquals(feeder.diverter,DiverterState.FEEDING_BOTTOM); // initially the diverter is feeding the bottom lane // ################################################# // (1) Parts of type A are loaded into the top lane. // ################################################# feeder.msgHereAreParts(p1); // The gantry has DELIVERED the part for(FeederAgent.MyPartRequest pr : feeder.requestedParts) { if (pr.pt == p1) { mpr = pr; // set a reference to the MyPartRequest assertEquals(pr.state,FeederAgent.MyPartRequestState.DELIVERED); } } // make sure the scheduler works feeder.pickAndExecuteAnAction(); // should remove the request from the list assertFalse(feeder.requestedParts.contains(mpr)); // the current part that is being fed into the lane assertEquals(feeder.currentPart,mpr.pt); if (feeder.bottomLane.lane == mpr.lane){ assertEquals(feeder.bottomLane.part,mpr.pt); } else { assertEquals(feeder.topLane.part,mpr.pt); } // make sure the feeder's state is updating correctly assertEquals(feeder.state,FeederAgent.FeederState.SHOULD_START_FEEDING); // The feeder receives the parts he asked for from the gantry. feeder.pickAndExecuteAnAction(); // diverter was feeding the bottom lane initially, see if it switched correctly assertEquals(feeder.diverter,DiverterState.FEEDING_TOP); // After the okayToPurgeTimer goes off, the feeder receives a request for new parts. feeder.state = FeederState.OK_TO_PURGE; // this gets called when the okayToPurgeTimer goes off // #################################################### // (2) Parts of type B are loaded into the bottom lane. // #################################################### feeder.msgLaneNeedsPart(p2, bottom); feeder.pickAndExecuteAnAction(); // make sure the feeder's state is updating correctly assertEquals(feeder.state,FeederAgent.FeederState.WAITING_FOR_PARTS); // assertEquals(feeder.bottomLane.part,p2); // Figure out whats going on inside the purge if necessary method // assertTrue(feeder.bottomLane.lane == bottom); // assertTrue(feeder.bottomLane.part != feeder.currentPart); feeder.msgHereAreParts(p2); // The gantry has DELIVERED the part for(FeederAgent.MyPartRequest pr : feeder.requestedParts) { if (pr.pt == p2) { mpr = pr; // set a reference to the MyPartRequest assertEquals(pr.state,FeederAgent.MyPartRequestState.DELIVERED); } } // make sure the scheduler works feeder.pickAndExecuteAnAction(); // should remove the request from the list assertFalse(feeder.requestedParts.contains(mpr)); // the current part that is being fed into the lane assertEquals(feeder.currentPart,mpr.pt); if (feeder.bottomLane.lane == mpr.lane){ assertEquals(feeder.bottomLane.part,mpr.pt); } else { assertEquals(feeder.topLane.part,mpr.pt); } // make sure the feeder's state is updating correctly assertEquals(feeder.state,FeederAgent.FeederState.SHOULD_START_FEEDING); // The feeder receives the parts he asked for from the gantry. feeder.pickAndExecuteAnAction(); // the feeder should want to feed the bottomlane assertEquals(feeder.currentPart,feeder.bottomLane.part); // Feed p2 to the bottom lane assertEquals(feeder.diverter,DiverterState.FEEDING_BOTTOM); // Feeder is deciding if it should purge or not assertTrue("Feeder should call the Action purgeIfNecessary(). Event log: " + feeder.log.toString(), feeder.log.containsString("Action purgeIfNecessary()")); // Feeder has decided to purge assertTrue("Feeder should call the Animation DoPurgeFeeder(). Event log: " + feeder.log.toString(), feeder.log.containsString("Animation DoPurgeFeeder()")); // Feeder shouldn't purge either of its lanes assertFalse("Feeder shouldn't call the Animation DoPurgeTopLane(). Event log: " + feeder.log.toString(), feeder.log.containsString("Animation DoPurgeTopLane()")); assertFalse("Feeder shouldn't call the Animation DoPurgeBottomLane(). Event log: " + feeder.log.toString(), feeder.log.containsString("Animation DoPurgeBottomLane()")); // After the okayToPurgeTimer goes off, the feeder receives a request for new parts. feeder.state = FeederState.OK_TO_PURGE; // this gets called when the okayToPurgeTimer goes off // ################################################# // (3) Parts of type A are loaded into the top lane. // ################################################# feeder.msgLaneNeedsPart(p1, top); feeder.pickAndExecuteAnAction(); // Figure out whats going on inside the askGantyForPart method assertFalse(feeder.currentPart == p1); assertFalse(feeder.state == FeederState.IS_FEEDING); assertEquals(feeder.topLane.part,p1); // Figure out whats going on inside the purge if necessary method assertTrue(feeder.topLane.lane == top); assertTrue(feeder.topLane.part != feeder.currentPart); // WHERE IS CURRENTPART GETTING SET? //assertEquals(feeder.state,FeederState.OK_TO_PURGE); // NOTE: We don't check this because it gets reset during the agent's thread. // Feeder shouldn't purge either of its lanes assertFalse("Feeder shouldn't call the Animation DoPurgeTopLane(). Event log: " + feeder.log.toString(), feeder.log.containsString("Animation DoPurgeTopLane()")); assertFalse("Feeder shouldn't call the Animation DoPurgeBottomLane(). Event log: " + feeder.log.toString(), feeder.log.containsString("Animation DoPurgeBottomLane()")); // make sure the feeder's state is updating correctly assertEquals(feeder.state,FeederAgent.FeederState.WAITING_FOR_PARTS); feeder.msgHereAreParts(p1); feeder.log.clear(); feeder.pickAndExecuteAnAction(); // puts the feeder in the state SHOULD_START_FEEDING assertEquals(feeder.state,FeederState.SHOULD_START_FEEDING); feeder.pickAndExecuteAnAction(); // feeder should call the StartFeeding() action assertEquals(feeder.topLane.part,feeder.currentPart); //assertEquals(feeder.state,FeederState.IS_FEEDING); // the PREVIOUS lane that was being fed assertEquals(feeder.diverter,DiverterState.FEEDING_BOTTOM); // see if the parts are matching up with the appropriate lane assertEquals(feeder.currentPart,feeder.topLane.part); // the top lane should contain parts assertEquals(feeder.topLane.state,MyLaneState.CONTAINS_PARTS); assertTrue("Feeder should be doing Action ProcessFeederParts(). Event log: " + feeder.log.toString(), feeder.log.containsString("Action ProcessFeederParts()")); // MAKE SURE THE DIVERTER IS SWITCHING CORRECTLY assertTrue("Feeder should be doing Animation DoSwitchLane(). Event log: " + feeder.log.toString(), feeder.log.containsString("Animation DoSwitchLane()")); } }
[ "yuzhongxing88@gmail.com" ]
yuzhongxing88@gmail.com
679929b9e1c4e0489cdf28accac5210f5da50376
8e970c2b1ea1e459122fc99008d82779a73726c5
/src/test/java/com/nokia/oss/interview/CsvReaderTest.java
e63b0ea2fe4d472085ee74fa468f08f20072560d
[]
no_license
thakuli/suttua
1cd549c1e41826a0892ee0db64025a5b70ad520e
b085bdf8640f4f675508c2fac7f3f7c44661adc0
refs/heads/master
2021-01-20T10:04:34.725414
2017-08-28T08:16:25
2017-08-28T08:16:25
101,620,067
0
0
null
null
null
null
UTF-8
Java
false
false
1,457
java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package com.nokia.oss.interview; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.IOException; import java.io.Reader; import java.util.List; import org.junit.After; import org.junit.AfterClass; import org.junit.Before; import org.junit.BeforeClass; import org.junit.Test; import static org.junit.Assert.*; import org.apache.commons.csv.CSVFormat; import org.apache.commons.csv.CSVRecord; /** * * @author thakuli */ public class CsvReaderTest { private static final String CSV_FILE = "src/test/resources/testdata.csv"; public CsvReaderTest() { } @BeforeClass public static void setUpClass() { } @AfterClass public static void tearDownClass() { } @Before public void setUp() { } @After public void tearDown() { } // TODO add test methods here. // The methods must be annotated with annotation @Test. For example: // @Test public void readCsvFile() throws FileNotFoundException, IOException { CsvReader csvr = new CsvReader(CSV_FILE); List<NetworkElement> nes = csvr.getNetworkElements(); assertEquals(55,nes.size()); } }
[ "tero.hakuli@nokia.com" ]
tero.hakuli@nokia.com
c2bff0eea76f4c5bb7762cacdd2199fd855bd881
71e9f32a87672af483a34f083a4e61ca5f0f6f7c
/src/main/java/wildCard/WildCardFixed.java
8b0a4e6ed93b32575c4d5ce8b98c7e2021acbc52
[]
no_license
walfallen/CoreJava
06bda9cf73731d441b22c6600d3b8b74d5346f82
8fc012c851a92ff532820de7a952a443218f52cc
refs/heads/master
2020-05-03T22:46:23.516763
2019-04-03T03:16:37
2019-04-03T03:16:37
null
0
0
null
null
null
null
UTF-8
Java
false
false
209
java
package wildCard; import java.util.List; public class WildCardFixed { void foo(List<?> i) { fooHelper(i); } private <T> void fooHelper(List<T> l) { l.set(0, l.get(0)); } }
[ "706580680@qq.com" ]
706580680@qq.com
3c09a343462f2f16c100c6b92328eb59777aeb7c
0a0752dd39277c619e8c89823632b0757d5051f3
/findbugs/baware_run/src/mid/classes/org/apache/batik/parser/AWTPolylineProducer.java
2f9aa0656b8807ffaf8ae645c8c0a0db7dcfea8f
[]
no_license
anthonycanino1/entbench
fc5386f6806124a13059a1d7f21ba1128af7bb19
3c664cc693d4415fd8367c8307212d5aa2f3ae68
refs/heads/master
2021-01-10T13:49:12.811846
2016-11-14T21:57:38
2016-11-14T21:57:38
52,231,403
0
2
null
null
null
null
UTF-8
Java
false
false
16,946
java
package org.apache.batik.parser; public class AWTPolylineProducer implements org.apache.batik.parser.PointsHandler, org.apache.batik.parser.ShapeProducer { protected java.awt.geom.GeneralPath path; protected boolean newPath; protected int windingRule; public static java.awt.Shape createShape(java.io.Reader r, int wr) throws java.io.IOException, org.apache.batik.parser.ParseException { org.apache.batik.parser.PointsParser p = new org.apache.batik.parser.PointsParser( ); org.apache.batik.parser.AWTPolylineProducer ph = new org.apache.batik.parser.AWTPolylineProducer( ); ph. setWindingRule( wr); p. setPointsHandler( ph); p. parse( r); return ph. getShape( ); } public void setWindingRule(int i) { windingRule = i; } public int getWindingRule() { return windingRule; } public java.awt.Shape getShape() { return path; } public void startPoints() throws org.apache.batik.parser.ParseException { path = new java.awt.geom.GeneralPath( windingRule); newPath = true; } public void point(float x, float y) throws org.apache.batik.parser.ParseException { if (newPath) { newPath = false; path. moveTo( x, y); } else { path. lineTo( x, y); } } public void endPoints() throws org.apache.batik.parser.ParseException { } public AWTPolylineProducer() { super( ); } public static final java.lang.String jlc$CompilerVersion$jl7 = "2.7.0"; public static final long jlc$SourceLastModified$jl7 = 1445630120000L; public static final java.lang.String jlc$ClassType$jl7 = ("H4sIAAAAAAAAAL1ZDWwUxxWeO4P/+LExwfwbMIaWv7vShKDKNA04Jjac8ckG" + "0hoas7c7Zy/s7S67c/ZBSglICSiKEAqE0gZQ1RK1pSSkVdNUjaC0aUtQmiAI" + "ahNQQ9pUTdqABKqK09I2fW9m7/bnfIfcoJ60c3sz82bee/PN997MHb9GhtsW" + "qTclXZEibItJ7Ugc3+OSZVOlSZNsezXUdstP/GHf9oE3K3aESWkXGd0r2W2y" + "ZNPlKtUUu4tMVXWbSbpM7VWUKigRt6hNrT6JqYbeRcapdmvK1FRZZW2GQrHD" + "WsmKkTESY5aaSDPa6gzAyLQY1ybKtYkuDXZojJGRsmFucQUm+QSaPG3YN+XO" + "ZzNSHdso9UnRNFO1aEy1WWPGIvNMQ9vSoxksQjMsslFb5DhiRWxRnhvqX6i6" + "eWtvbzV3w1hJ1w3GTbQ7qG1ofVSJkSq3tlmjKXsz+SopiZERns6MNMSyk0Zh" + "0ihMmrXX7QXaj6J6OtVkcHNYdqRSU0aFGJnhH8SULCnlDBPnOsMI5cyxnQuD" + "tdNz1maXO2Di0/Oi+7/2cPUPS0hVF6lS9U5URwYlGEzSBQ6lqQS17KWKQpUu" + "MkaHBe+klipp6lZntWtstUeXWBogkHULVqZNavE5XV/BSoJtVlpmhpUzL8lB" + "5fwantSkHrC11rVVWLgc68HAShUUs5ISYM8RGbZJ1RWOI79EzsaGldABRMtS" + "lPUauamG6RJUkBoBEU3Se6KdAD69B7oONwCCFsdagUHR16Ykb5J6aDcjE4L9" + "4qIJelVwR6AII+OC3fhIsEqTAqvkWZ9rq5bseURv0cMkBDorVNZQ/xEgVBcQ" + "6qBJalHYB0Jw5NzYAan25O4wIdB5XKCz6PPSV27cP7/u9Kuiz+RB+rQnNlKZ" + "dctHE6PPT2ma87kSVKPcNGwVF99nOd9lcaelMWMC09TmRsTGSLbxdMevv/To" + "MfphmFS2klLZ0NIpwNEY2UiZqkatB6lOLYlRpZVUUF1p4u2tpAzeY6pORW17" + "MmlT1kqGabyq1OC/wUVJGAJdVAnvqp40su+mxHr5e8YkhJTBQ1rgmU7Eh38z" + "okV7jRSNSrKkq7oRjVsG2o8LyjmH2vCuQKtpRBOA/00LFkYWR20jbQEgo4bV" + "E5UAFb1UNOIeBVqMLn1odRwcgZrCgEpaplYEUWf+n+fLoP1j+0MhWJopQWLQ" + "YE+1GJpCrW55f3pZ843nu18ToMON4niOkXkwaURMGuGTRsSkkUEmJaEQn+su" + "nFxAABZwE1ABcPHIOZ1fXrFhd30JYM/sHwbex66z82JTk8sZWaLvlo+f7xg4" + "93rlsTAJA60kIDa5AaLBFyBEfLMMmSrAUIVCRZYuo4WDw6B6kNMH+3es3f4Z" + "roeX83HA4UBXKB5Hps5N0RDc64ONW7Xrg5snDmwz3F3vCyLZ2JcniWRSH1zZ" + "oPHd8tzp0ovdJ7c1hMkwYChgZSbBsgHh1QXn8JFKY5ag0ZZyMDhpWClJw6Ys" + "q1ayXsvod2s45MZgMU6gD+EQUJBz++c7zcNvvfGXu7kns2GgyhO/Oylr9FAP" + "DlbDSWaMi67VFqXQ7/cH4/uevrZrHYcW9Jg52IQNWDYB5cDqgAcfe3Xz21fe" + "OXox7MKRQexNJyCNyXBb7voYPiF4/oMP0gVWCNqoaXK4a3qOvEycebarG9CY" + "BlsbwdGwRgfwqUlVSmgU98K/qmYtfPHqnmqx3BrUZNEy//YDuPUTl5FHX3t4" + "oI4PE5IxjLr+c7sJbh7rjrzUsqQtqEdmx4WpXz8jHQaWB2a11a2UkyXh/iB8" + "Ae/hvojy8u5A271YNNhejPu3kSfd6Zb3Xrw+au31Uze4tv58ybvubZLZKFAk" + "VgEmayVO4SNvbK01sRyfAR3GB0mnRbJ7YbB7Tq9aX62dvgXTdsG0MhCp3W4B" + "7WV8UHJ6Dy+79PNXajecLyHh5aRSMyRlucQ3HKkApFO7FxgzY37hfqFHfzkU" + "1dwfJM9D6PRpgy9nc8pkfAG2/mT8j5Z858g7HIUCdpO5eImNuVyQG3lC7m7r" + "q5efee9nA98uE+F8TmEuC8hN+Ge7ltj5x4/yVoKz2CCpRkC+K3r80KSm+z7k" + "8i6doPTMTH6oAcJ1ZT97LPX3cH3pr8KkrItUy07yu1bS0riTuyDhs7MZMSTI" + "vnZ/8iYylcYcXU4JUpln2iCRuSEO3rE3vo8KoG40ruI0eBoc1DUEURci/KWF" + "i8zi5aexmJflkwrTMhhoSZVMblgOjlFFhmUid+ECExiZyCEk9bNIDzVSEcE3" + "WtzJbsbybouxaBVzNBYE5zK/aXXwzHF0mFPAtE5hGhYr8y0oJM1ImU77UUXO" + "DR4U4/GwM52wWdxSU8DrfU7yeqJ2YPMvy7Y+kE1MBxMRPVfabed+2vJ+N48b" + "5ZgJrM6unyfGL7V6PPGoGosFSBJF9khAo+i2miubDn3wnNAouCECnenu/U98" + "HNmzX/C5OKDMzDsjeGXEISWg3Yxis3CJ5e+f2Pbyd7ftElrV+NPtZjhNPvfb" + "f/8mcvDds4NkcmUJw9CopOeIKpTLwmqDDhdmlS48/I/tj7/VDmlDKylP6+rm" + "NG1V/NunzE4nPCvgHn/cLeUYiNGTkdBc08wEkLv6f0BuxMFepABy1aLILSTN" + "yIh+cDOcCjvSmkhpvugsD36t87zDMbBEdY7tHm/iTxo0cGMRAzMF2ANf57u0" + "wT+lRWKgJ3iEs9wxq1DyHjdQ9RZYdchhbtu7s1cyc0k+AnVqofMrB+nRnfuP" + "KO3PLgw7acIGIEJmmAs02kc1j5plHPLBGNfGT+1uwFh8YaDk8lMTRuan/jhS" + "XYHEfm7hjR6c4MzOv05afV/vhiHk9NMC9geH/F7b8bMPzpafCvOLBxGf8i4s" + "/EKN/m1VaVGWtnT/RqrPoWECLv5MeBY5aFgU3AYuAvOgFebQgmzX5nc/gdA0" + "psiogVww7EfbaB6pVCPSQSVFpAM61+PJ4nJjs3Kt7c0ZmZo550Pb7IIIxq9c" + "dz7NXiwegy0sWxQyco5av24YRd1qvjUfvx33+FI6rLifV+/IeW0ENs2Cp9nx" + "WnORtcCiz+/wyiKiAcd5OEaY/M0i2fm3sHgGTLcpeyhAagEiG9ZnqIrrk0Of" + "2CdV2DQVnphjWGzoPikkWsTkE0XafoDFMXBHj88d3Jeu6d//xKbj/iET4Vnj" + "6L9m6KYXEi1i3stF2k5i8WNGysF0Dn/8fcA1+qU7swdwvdc7mq8futGFRIsY" + "dqbw/tjHO5zF4hdACUB1FhNRD6uOusa/cmeM/xQ8imOBMnTjC4kWYc4iiQkc" + "dgypSGpykZdv3s57l7B4A4Yz0XEBv527M36bDI/pGG8O3W+FRIuA5k+3M/vP" + "WFxh/Np5UMi8O3TTMxDmBrkxxTuCCXl/2Yi/GeTnj1SVjz+y5nf81i73V8BI" + "OPYk05rmPcJ63ktNiyZVbsdIcaAV6fY1RsYXiKV478VfuO5XRf/rjFQH+wMS" + "+Le3398YqXT7wVDixdvlJmTK0AVfB8xsQK7mARlP8hFxks+EPKmhkxVzb4+7" + "nbdzIt6bP0z7+F9m2RQtLf40g7PmkRWrHrlx77Pi5lHWpK1bcZQRcJYR95u5" + "NG9GwdGyY5W2zLk1+oWKWdlU13fz6dWNgwBQxm8JJwWu4uyG3I3c20eXnHp9" + "d+kFOL+tIyEJULMu/84jY6YhB10XG+zUBkkwvyVsrHxvw7mPLoVq+NUSEee8" + "umIS3fK+U5fjSdP8RphUtJLhECNphl/IPLBF76Byn+U7BJYmjLSe+3dtNMJT" + "wr/TuGcch47K1eKlNCP1+Wfi/Iv6Ss3op9YyHB2HGRVIjNOm6W3lnlUE/aGn" + "AWvdsTbTdO5qy+q5500Tt2GoklPgfwGwGZ5vFx8AAA=="); public static final java.lang.String jlc$CompilerVersion$jl5 = "2.7.0"; public static final long jlc$SourceLastModified$jl5 = 1445630120000L; public static final java.lang.String jlc$ClassType$jl5 = ("H4sIAAAAAAAAAL1aeezj2F33/HZ3Zo92Z3ZLu9ule7Wzha3Lz3Ecx4mWQuPE" + "ceLEjmPHdmJKtz5jx2d85ILlqAStAJUKtqUI2H8oAqqFIg4BQsAixFkEKkLc" + "0ApxQyUKohzlenZ+98zssuyKSH55fu/7fe97vc+7/PxnoDvSBILjyN/O/Sg7" + "tDbZ4cLHD7NtbKWHzBDntSS1zLavpekElD1tvPlHrn7u8x90rh1Al1XodVoY" + "RpmWuVGYClYa+SvLHEJXT0sp3wrSDLo2XGgrDckz10eGbpo9NYTuOcOaQdeH" + "xyIgQAQEiICUIiCtUyrA9ForzIN2waGFWbqEvga6NIQux0YhXgY9fr6RWEu0" + "4KgZvtQAtHBn8S4DpUrmTQI9dqL7XucbFP4QjDz7He++9qO3QVdV6KobioU4" + "BhAiA52o0GsCK9CtJG2ZpmWq0H2hZZmilbia7+5KuVXo/tSdh1qWJ9aJkYrC" + "PLaSss9Ty73GKHRLciOLkhP1bNfyzeO3O2xfmwNd33Cq617DblEOFLzbBYIl" + "tmZYxyy3e25oZtCjFzlOdLw+AASA9UpgZU500tXtoQYKoPv3vvO1cI6IWeKG" + "c0B6R5SDXjLooVs2Wtg61gxPm1tPZ9CDF+n4fRWguqs0RMGSQa+/SFa2BLz0" + "0AUvnfHPZ7gv/cBXhb3woJTZtAy/kP9OwPTIBSbBsq3ECg1rz/iatw0/rL3h" + "Z99/AEGA+PUXiPc0P/nVn33n2x954Vf3NF94E5qRvrCM7Gnjo/q9n3xT+8nm" + "bYUYd8ZR6hbOP6d5Gf78Uc1TmxiMvDectFhUHh5XviD88uzrPmb93QF0dx+6" + "bER+HoA4us+Igtj1rYS2QivRMsvsQ3dZodku6/vQFZAfuqG1Lx3Zdmplfeh2" + "vyy6HJXvwEQ2aKIw0RWQd0M7Os7HWuaU+U0MQdAV8EA98DwG7X/lfwb5iBMF" + "FqIZWuiGEcInUaF/4dDQ1JDMSkHeBLVxhOgg/r0vQQ8JJI3yBAQkEiVzRANR" + "4Vj7ymKMplaCtJQJDwxRSAoaNHPDSg6LqIv/n/vbFPpfW1+6BFzzpovA4IMx" + "1Yt800qeNp7NSeqzP/z0Jw5OBsqR5TIIBp0e7js9LDs93Hd6eJNOoUuXyr6+" + "oOh8HwLAgR6AAgCSr3lS/ErmPe9/820g9uL17cD6BSlya6xun4JHv4RIA0Qw" + "9MJH1l8vf23lADo4D7qFwKDo7oKdL6DyBBKvXxxsN2v36vv++nMf//Az0emw" + "O4fiR2hwI2cxmt980bRJZFgmwMfT5t/2mPYTT//sM9cPoNsBRABYzDRgN4A4" + "j1zs49yofuoYIQtd7gAK21ESaH5RdQxrd2dOEq1PS0qf31vm7wM27kNHybm4" + "L2pfFxfpF+xjpHDaBS1KBH6HGH/P7//m32CluY/B+uqZ6U+0sqfOAETR2NUS" + "Cu47jYFJYlmA7k8+wn/7hz7zvq8oAwBQvOVmHV4v0jYABuBCYOZv+NXlH3zq" + "Tz/6OwenQZOBGTLXfdfY7JX8b/C7BJ7/Kp5CuaJgP7jvbx8hzGMnEBMXPb/1" + "VDYANj4YgEUEXZfCIDJd29V03yoi9j+uPoH+xN9/4No+JnxQchxSb3/pBk7L" + "30hCX/eJd//LI2Uzl4xisju13ynZHkFfd9pyK0m0bSHH5ut/++Hv/BXtewAW" + "A/xL3Z1VQhpU2gMqHVgpbQGXKXKhrlokj6ZnB8L5sXZmUfK08cHf+YfXyv/w" + "c58tpT2/qjnrd1aLn9qHWpE8tgHNP3Bx1Pe01AF0tRe4d13zX/g8aFEFLRoA" + "ydJRAnBncy5KjqjvuPKHv/CLb3jPJ2+DDrrQ3X6kmV2tHHDQXSDSrdQBkLWJ" + "v/yd+2he3wmSa6Wq0A3K7wPkwfLtMhDwyVtjTbdYlJwO1wf/feTr7/2zf73B" + "CCXK3GQuvsCvIs9/90PtL/u7kv90uBfcj2xuxGKwgDvlrX4s+OeDN1/+pQPo" + "igpdM45Wh7Lm58UgUsGKKD1eMoIV5Ln686ub/VT+1Amcveki1Jzp9iLQnM4B" + "IF9QF/m7L2DLvYWVHwXP9SNsuX4RWy5BZeadJcvjZXq9SL7oeCjfFSdRBqS0" + "zLLtJ7P9vF1Svj6D3liGh7bODudWFBzuR7HPH83s10oyrEhae1/XbxkXT52X" + "+hHwPHkk9ZO3kJq5hdRFtnMs7pXQWhfyvHh48YkbAHxcHS3VkGfu/5T33X/9" + "Q/tl2MVYukBsvf/Zb/rvww88e3Bm8fuWG9afZ3n2C+BSwteWYhaj8/EX66Xk" + "6P7Vx5/5mR945n17qe4/v5SjwE7lh373P3/j8COf/rWbrBKu6FHkW1p4wS2D" + "/4NbDo/ccngLt8z+N265Zw0UAmt7Iff38+LoyBDFn5hBt4FtxQVZ1ZeUdd/E" + "JRC2d1QPicNK8W7cXJrbiuwXg6kqLbdXgMN2Q80/Fu+BhW9cP56cZLDdAthy" + "feETx3F/rYz7YhQf7vcoF2R98n8tK/D8vaeNDSOw3fnmP//gb3zrWz4FvMhA" + "d6wK3ADuPtMjlxc7wG98/kMP3/Psp7+5nHmBefkPU9feWbQavpjGRVIK6xyr" + "+lChqlguYIdamrHlBGmZJ9pecMztfvQKtM2uvr1XS/ut498QVTvKWtpsFGtU" + "4xF4SG3W9lpn+5qyIlaiM+gMuFalxiw0o2F4dMWJtJQwCHWLpIRYJwxEJcW5" + "32+L7oBqLanKXB2jwgCNRdGTTU5aaO2KJmXjwG31NYcbj5uxNDGXLXKwHFSa" + "/aqtNAMC0UO7bxsRU68YWLprVHXLQniu2STYnt6knSxVlhPDn6qUq/czhpDm" + "BgaPRFUe+aLKpdZuKplpxiN0z25GFDbANEpUvCltVpKqUt2qHO8PMknKaxkr" + "TxVd1GOWkBVp4M6FrO5wyaTOLGe6JYA9hRmsBmhXUFWlSo+TXkdJg4E3ocQZ" + "rmlih9fq811rOxzP0K0+yGZe3pmq0YKhhTTo5sZYCuCxqPE0NuPg6UjdcWLP" + "TKOmFApcd4Rq1BZVFJ7urzh23FyJ0cZLxws2Tf2ujnccV1A2QuisltO6W7eU" + "bKXvZGyNOgy6xuiJPiaWNBrZssh44hLL/GAxmKY7WIxiV6WEMK2zHCtuvYrq" + "VFyHDZLplBhPtUWdqY8y2TN63MxcCqJU0bo0Ezq9higN26HfIflwlLJ93Nhu" + "wnHeyUxuhwbadFTtuBVk5MIEUjV4iRcrjtyt+2JTwiVhPfNpaieS47q/HIso" + "MVAG41jKWU/rkRbs+W4c1301zJQszSRrqpDR3OtJQ3mpctqKwqcyQooRk8l+" + "HDixtBs2fBK312CKFr1e0kbRRJaV4dyoN3ot0ZGkFO+LM7Yh0LrKoIIy6hNN" + "apdqtG+2SIHNRJ+XtFwL6LrASB4ZkZSEiVZ9YLY69SZJRCNu3W53U1ObSz0B" + "rc88HWfqWsdYULVhs7bsM5Yvr4V6q9+HR23MdvoptZy0litPUZvJEtdTSxJW" + "FYP1yE6UyJw6RjbUXCaNcX1JMprfm5EVZo1zu1lLC6v4qLbumyQ+HbR3dZ4X" + "5Sph8ASSNwe5u4MFEk7GIecPVNPIehQgmFQDrUF4ojzgDY5ey91mMxyZTd/Q" + "LJ9V2HalOQmEdEKLQ31jstZqhUwi1o6doCtWPX+oVrh+vOaoWVVy1aWnZWTd" + "Hw1nvhCrsiR10biWV7O4tbNm9XgkKCjBBv4E9Za0pm+X6KiNrCWZoVuMKbfC" + "1TKuVdIcDja9BLcaM89hJuQYTeaBRFAO1thFnkwsBJETk4G3JCJhIad0NWoM" + "t4ugV1218/EgiwVy1EIqlWHXmylCtbLQx9Q8qukyhUutro5K3KhvkfKSHYZo" + "ZAprY64m7TkVa7E/oyTFhkPYHkY8uoArrKMwUTxWwGCjYJRm4nai4LiNxWqj" + "hoU52gCGGHG10B15U2+tSQJL5/RESEXPk6iA0ahxCKd52N20WqS6ptAWafC9" + "/khF7WnSdUyswsxYJO2tdWtTrwPMYSZeI1UVbbjyI9gmNvNaE0v8dNJiWvWK" + "1+9oeEsbkt0tSdlDlg3EpCX15bagzvKopnTWdbLucWwPxqwUs2tqElnTBtZr" + "1SRyOiDxXpziXEXoGPXaiFOIaTLH07ATrHdYF1u1t0O1yhihqwhiD92pEd8z" + "G9kurkQrkyEM1GG99aztzFVRJ9N5z0HH07DBdAcAk+YVVd2yHSdW2j6zroOJ" + "H9W203QVmdW0hrPqnJXq8w5MjSWG3MGwQewMbrWy6WlOeGFapedbZ4SMtn7S" + "7Lb4jq93REVj3Tohd5fTMYEYvRqSW6tETXozQ2kyc7zaH3NKZ0biRmc5bxm2" + "hU13VdS2RtNoQ7ADYWxtOGbb5rZTUidW0Yx3uzUkYvnKXFba3DLSpoOahi1H" + "K2prWLqW0M32jPRTfW3Sa2Fur5eSL4vBXGo2BsgymGU231uGwXKDkYmkctQW" + "QWadnJcmPt7tTbGsFvVrPIX3N4thArRLGd0hkkWyk9LlOFtSZrCpKfF011j0" + "xppCVjUU1aqSt506iEs2WhbirKLFtpHjrSqBzjjOsRZ8jnmibdZVHZsma1jL" + "MVTaWbVshTe2+irX1aE66LY8eU4F2lYe1URupQ8qaCps7ZaA0WQlCAWdIWY6" + "SUyWTW1ar5qr+XRipjSI6HaMKTWSUOSG1GPqnS1MNHkOgLRlDLc9B9cEkd0K" + "PphIsN7Aa8XdEdHdzHczjHDsZbdn7zwJNdc2wzY7dV6I59tmaDRiz27RVSSY" + "NBa42sAbc6LXl9pmPMKtfsDl8nZMY36bCAiAZZZtWc2w1WzkFNxtTAIqbzcc" + "DqYtws8W+KaGbOVosKu227HgteEBljQqAzGAd4TXcOtmxE/YSa8etQwGVSdN" + "YshPMaOHxUlj4CX9TNpWiG2O6mIlcSf5tuOkBKuy4qS/ClWk4c62vjEzplKN" + "kWI/rLptIRepEZZQ2CpqDCK6VknyfsUiIwPtSJQkGC4yULpuY+fimrUJGNv3" + "1smEdZwITPys7s9HC7/bdQLJNWGqTW1cddumvKbO9Ts7WaQMClOyHaOn+laP" + "8o1GyjuOnFH4boBo0+l61+tWgi7fyijcoZ1Z0thWIoZF+wDrCEmajjpCTaoh" + "9JrFq2vF3IhSo5PYErG1lkx1xrOrLTGDPQplyQ0r8LKt6ZYJV1cMzNUaOq7O" + "mYSt5+HWpoeEDFCejugo7Yok0216TiuC3Wrg5nonxNYh14ryNtUOrTBHQNT3" + "uGA3Rdr4aNBhd510YdFTqi8qc2y2cVOszeAWbFd5fWsSdkb5iQxzfKYuHI5f" + "2bqNNAJj1THTGucZgcSsm+0oHln9QTwZroNlp+OYgS/WGkgfyRYEIncCvzPY" + "+nwdTgKORmWEy8MdVQv59mreCxFjaEkzl6Mnnkkalcaa8oarul0h8w3bteIW" + "uUW1YX8oTrht34GNzshoL1Zi4DnxKp+nHayeNYhdh9VJypwRWS9A3Mkmqhg0" + "K7R2bLfa4mycyCvrCewLymDOYC6VNtebJdrZ9hbmuAmA1TQcR89yIkWNrVHx" + "4FYoLyObTUg4FEI75wcjjB/O14Rm9Ok+xQRBK61UPQNd4LHf44ckzdn0BEbz" + "dddpzLSO1/DZiZBrIbJwxOmsR9kB4SyEulFjd6NVBddsGVk5bs9rcmy7Obd6" + "SJfQGzrL72LNbq9GQ3JD2w23liLUgEMCVNZkWsnCCSIsEz5SqPZwhbMWCVC5" + "O5ew1ixvrUbzrqWP58CleGggc7NVicE+Zi6v1wRl6xpZj+U2L45FuRu32DoK" + "80wtZBYpNsgIo6IGaoTjFV4n+v3+Ztk0zB3BTd21Nd9WUmUz3hoRrq2qtZlg" + "osvVQrJXGwyDu/16MnRtGUb6llKhuLTajpvhRglHQma0wRoEWW/dgdsyTHxE" + "aTOErbhVO8DS3pyeDI3Y2jotbU65dFMNl/0k8Soju9o25WpnLIexs1DoXcS7" + "nqekE4+qTDU76nTZKdlbNBomxlh53USQzUBfIC41qcnhoj5sBvXBbEq5qIul" + "Wbfq4W5D4eht2q10QqRhGy0UXkpEujbXK9MggmXDzjO6K/RTsF7V1yBSeyN8" + "1605ZqstkWjX4YROPR/lqYYYgcUim3HDDUYkG04W7ZqnzIya6449w5xvY5GO" + "t55qrrAUJ3yCrLVqs11lSpErvEqwWF3v9JGYphsjTIFBf3kL92CMRVa80t04" + "CBfjEuuCysmE3XQCMvE2m0nebk99pDpzEdqahAtUlBc7eIuHdgN1CUxukP0R" + "P/MqeBLwBlPHvIxzt6qsp2bf0Fpy3Z6hQjqbugO5RjRkOx/hU8FGkkV33IPX" + "rAgPLQxrNmbL6YRYyx13Y658JpgMKi3ZJhubdDwggpbg8w2nC3YOMMUPAsfb" + "yDu9BhOhbu76WV3nKzsC7jaDqjDOhnatMif4wBOUpJf4G4LgXdzvKfEA1Q11" + "LBjMTGjiOc7RTRrMv9sZrlR3Qw+FI2WgmL6EYvaubircfE2ON0GDYdZKXsu3" + "NNbHjGrFmoa9uGnCXnc0hLP+lmKkIZsjjdpiVp85JFqZ0vBOIj1vvdrKadLb" + "rNZEwA8jeQlzkkhZViMP+iJmD2AJtxeiyTeE2JEyZuhQbS52fKQPhnCXqJPb" + "EJYIkpkFi6FowZiZcSwzWSfIJKcNw6kRA9Qa+FybR2HFdpH+qi6mWBQ3Z9se" + "We3RgtxfcKOgrmB+6EsUotFhS1mZ6USfmCN8uYWXYIxVJlmVjjyfBysQek2r" + "+Kq7aYDN8TveUWybdy9vO39feXJxctUKdvFFxeJl7Nj3VY8XyRMnpz/l7zJ0" + "62uKM0e5B8enJE/c6mqKj9wwS3taaPpW8pLUoqPFJ1dYxVHZw7e6nS2PyT76" + "3mefM0ffhx4cHa9PMuiuLIq/xLdWln9GzCugpbfd+kiQLS+nT499f+W9f/vQ" + "5Muc97yMi61HL8h5sckfZJ//NfqtxrcdQLedHALfcG1+nump80e/dydWlifh" + "5NwB8MMnXnuwcNJbwIMfeQ2/eGZ3Ghc3RNjBaYTtg+vCFcbBeWfvT7Hc6FCw" + "NHN/lP7uku/ZF+d73TFff0RtDCs+sSmoe+stA6j4OyEvu/lIkXxrBt1jJJaW" + "WWXQnJetOKY+LS7HwQdf6uTq7HVFWfAtJ8a9pyh8AjzUkXGpl2Hc8jT0i29q" + "10unBHsD/sCL3B19rEi+F2iYWpny4keqt68i1zxV/aOvQPWrReHD4BkeqT58" + "dVQ/q9lPvkjdTxfJjwKt5+e0Lk12quGPvQINS8x7I3ikIw2lV1/DX3yRul8q" + "kp/LoDuBhmXMFu/Pner28680cAvvvetIt3e9+rr91q2D+rtKgk8Wya+D4Qpw" + "Lcn2E0JR9Pypjp94pTp+EXjMIx3NV0fHs+B1YXzdYfuRVl5a/HHJ+kcvZYJP" + "F8nvAsY4OrrtOKP8771S5b8QPPGR8vGr7+C/fSnt/r5I/iIrvw26qXv/8uVo" + "uAETxU0+aClu5B+84Yu6/Vdgxg8/d/XOB56Tfq/8puPkS627htCddu77Zy9Q" + "z+Qvx4llu6UGd+2vU+Py758y6IFbzEbFBw9lppT6H/f0n8ugaxfpgavL/7N0" + "/5ZBd5/Sgab2mbMk/5FBtwGSIvuf8U1uoPb3yJtLZ9Y2RyFR2vn+l7LzCcvZ" + "Tz6K9VD5RePx2iXff9P4tPHx5xjuqz5b/779JyeGr+12RSt3DqEr+69fTtY/" + "j9+yteO2Lvee/Py9P3LXE8drtXv3Ap+G5xnZHr35Nx1UEGflVxi7n3rgx7/0" + "+5/70/JC7H8AlOYKcmoqAAA="); }
[ "anthony.canino1@gmail.com" ]
anthony.canino1@gmail.com
e146c29d3400dffb1e4874b1e0ed1c960df4fec9
cd4802766531a9ccf0fb54ca4b8ea4ddc15e31b5
/dist/game/data/scripts/quests/Q00650_ABrokenDream/Q00650_ABrokenDream.java
7ebc039a9c49eca63a48bfbb81983fae3e2e5e66
[]
no_license
singto53/underground
8933179b0d72418f4b9dc483a8f8998ef5268e3e
94264f5168165f0b17cc040955d4afd0ba436557
refs/heads/master
2021-01-13T10:30:20.094599
2016-12-11T20:32:47
2016-12-11T20:32:47
76,455,182
0
1
null
null
null
null
UTF-8
Java
false
false
4,481
java
/* * This file is part of the L2J Mobius project. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package quests.Q00650_ABrokenDream; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import com.l2jmobius.gameserver.enums.QuestSound; import com.l2jmobius.gameserver.model.actor.L2Npc; import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; import com.l2jmobius.gameserver.model.quest.Quest; import com.l2jmobius.gameserver.model.quest.QuestState; import com.l2jmobius.gameserver.model.quest.State; import com.l2jmobius.gameserver.util.Util; import quests.Q00117_TheOceanOfDistantStars.Q00117_TheOceanOfDistantStars; /** * A Broken Dream (650) * @author netvirus */ public final class Q00650_ABrokenDream extends Quest { // Npc private static final int GHOST_OF_A_RAILROAD_ENGINEER = 32054; // Item private static final int REMNANTS_OF_OLD_DWARVES_DREAMS = 8514; // Misc private static final int MIN_LVL = 39; // Monsters private static final Map<Integer, Integer> MONSTER_DROP_CHANCES = new HashMap<>(); static { MONSTER_DROP_CHANCES.put(22027, 575); // Forgotten Crewman MONSTER_DROP_CHANCES.put(22028, 515); // Vagabond of the Ruins } public Q00650_ABrokenDream() { super(650); addStartNpc(GHOST_OF_A_RAILROAD_ENGINEER); addTalkId(GHOST_OF_A_RAILROAD_ENGINEER); addKillId(MONSTER_DROP_CHANCES.keySet()); registerQuestItems(REMNANTS_OF_OLD_DWARVES_DREAMS); } @Override public String onAdvEvent(String event, L2Npc npc, L2PcInstance player) { final QuestState qs = getQuestState(player, false); String htmltext = null; if (qs == null) { return htmltext; } switch (event) { case "32054-03.htm": { if (qs.isCreated()) { qs.startQuest(); htmltext = event; } break; } case "32054-07.html": case "32054-08.html": { if (qs.isStarted()) { htmltext = event; } break; } case "32054-09.html": { if (qs.isStarted()) { qs.exitQuest(true, true); htmltext = event; } break; } } return htmltext; } @Override public String onTalk(L2Npc npc, L2PcInstance player) { final QuestState qs = getQuestState(player, true); String htmltext = getNoQuestMsg(player); if (qs == null) { return htmltext; } switch (qs.getState()) { case State.CREATED: { if (player.getLevel() < MIN_LVL) { htmltext = "32054-02.htm"; } else { final QuestState q117 = player.getQuestState(Q00117_TheOceanOfDistantStars.class.getSimpleName()); htmltext = (q117 != null) && q117.isCompleted() ? "32054-01.htm" : "32054-04.htm"; } break; } case State.STARTED: { htmltext = hasQuestItems(player, REMNANTS_OF_OLD_DWARVES_DREAMS) ? "32054-05.html" : "32054-06.html"; break; } } return htmltext; } @Override public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon) { final List<L2PcInstance> randomList = new ArrayList<>(); final QuestState qs = getQuestState(killer, false); if ((qs != null) && qs.isStarted()) { randomList.add(killer); randomList.add(killer); } final int monsterChance = MONSTER_DROP_CHANCES.get(npc.getId()); if (killer.isInParty()) { for (L2PcInstance member : killer.getParty().getMembers()) { final QuestState qst = getQuestState(member, false); if ((qst != null) && qst.isStarted()) { randomList.add(member); } } } if (!randomList.isEmpty()) { final L2PcInstance player = randomList.get(getRandom(randomList.size())); if ((getRandom(1000) < monsterChance) && Util.checkIfInRange(1500, npc, player, true)) { giveItems(player, REMNANTS_OF_OLD_DWARVES_DREAMS, 1); playSound(player, QuestSound.ITEMSOUND_QUEST_ITEMGET); } } return super.onKill(npc, killer, isSummon); } }
[ "MobiusDev@7325c9f8-25fd-504a-9f63-8876acdc129b" ]
MobiusDev@7325c9f8-25fd-504a-9f63-8876acdc129b
98e4f89ccb45aa7ce2aa83068d9ca482fd32803d
63c5e8a7081969ca48c46539b833b22c5572eac0
/sheepdog/old_players/g8_v7/Player.java
a2600f71a7309728f0f17b394de68d6136f6906c
[]
no_license
knk2110/Sheepdog
241ca54ef372375bf3b17eb64deb218fa6bd67c7
2a91ac3c6b4a1b488f20253f1e045e919f33c5c4
refs/heads/master
2021-04-09T17:04:09.830721
2013-12-04T16:24:29
2013-12-04T16:24:29
null
0
0
null
null
null
null
UTF-8
Java
false
false
7,126
java
package sheepdog.g8; import sheepdog.sim.Point; import java.util.*; public class Player extends sheepdog.sim.Player { private int nblacks; private boolean mode; private int tick; private int vertexNumber = 0; private boolean calculateDestination = true; private boolean calculateNewHull = true; private List<Point> convexHull = null; private Iterator<Integer> hullIterator = null; private LinkedHashMap<Integer, Point> hullSheepMap; private int chosenSheepIndex; private Point targetSheep; private Point destination; private boolean pickSheep = true; protected static final Point GAP = new Point(50, 50); protected static final Point CENTER_POINT = new Point(75, 50); public void init(int nblacks, boolean mode) { this.nblacks = nblacks; this.mode = mode; } // Return: the next position // my position: dogs[id-1] public Point move(Point[] dogs, // positions of dogs Point[] sheeps) { // positions of the sheeps Point current = dogs[id-1]; tick++; // Move dogs toward gate if (current.x < 50) { return Functions.getMoveTowardPoint(current, GAP); // Move sheep towards center } else if (tick > 1400) { if (pickSheep) { HashMap<Integer, Point> undeliveredSheep = Functions.undeliveredSheep(sheeps); double maxDistance = 500; int maxIndex = 0; ArrayList<Integer> sheepDistances = getDistanceSortedIndices(sheeps, current, new ArrayList<Integer>(undeliveredSheep.keySet())); if (id < sheepDistances.size()) { chosenSheepIndex = sheepDistances.get(id); } else { Point moveLocation = Functions.getMoveTowardPoint(current, new Point(100, 100)); return moveLocation; } pickSheep = false; } if (sheeps[chosenSheepIndex].x < 50.00) { pickSheep = true; } targetSheep = sheeps[chosenSheepIndex]; targetSheep = anticipateSheepMovement(current, targetSheep); double angleGapToSheep = Functions.getAngleOfTrajectory(GAP, targetSheep); Point idealLocation = Functions.getMoveInDirection(targetSheep, angleGapToSheep, 1.0); Point moveLocation = Functions.getMoveTowardPoint(current, idealLocation); // make this more robust, crossing gate and distance check Functions.makePointValid(current, moveLocation); return moveLocation; } else { // The code below creates a mapping of sheep indices to positions. We use hullIterator to traverse the convex hull in order // after you finish hull, find the closest point to the hull if (calculateNewHull) { calculateNewHull = false; HashMap<Integer, Point> undeliveredSheep = Functions.undeliveredSheep(sheeps); hullSheepMap = new LinkedHashMap<Integer, Point>(); convexHull = GrahamScan.getConvexHull(new ArrayList<Point>(undeliveredSheep.values())); // double closestDistance = 500; // Point closestPoint = null; // for (int i = 0; i < convexHull.size(); i++) { // double distance = Functions.dist(convexHull.get(i), current); // if (distance < closestDistance) { // closestDistance = distance; // closestPoint = convexHull.get(i); // } // } // // int rotateIndex = 0; // for (int i = 0; i < convexHull.size(); i++) { // if (Functions.pointsEqual(closestPoint, convexHull.get(i))) { // rotateIndex = i; // break; // } // } // Random generator = new Random(); Collections.rotate(convexHull, generator.nextInt(convexHull.size())); for (Point p: convexHull) { for (int i = 0; i < sheeps.length; i++) { if (Functions.pointsEqual(p, sheeps[i])) { hullSheepMap.put(i, p); } } } hullIterator = hullSheepMap.keySet().iterator(); chosenSheepIndex = hullIterator.next(); } if (targetSheep!= null && Functions.arrivedAtDestination(targetSheep, destination)) { calculateDestination = true; if (hullIterator.hasNext()) { chosenSheepIndex = hullIterator.next(); } else { calculateNewHull = true; } } targetSheep = sheeps[chosenSheepIndex]; targetSheep = anticipateSheepMovement(current, targetSheep); if (calculateDestination) { double distanceToCenter = Functions.dist(CENTER_POINT, targetSheep); double pushDistance = 0.0; if (distanceToCenter > 20) { pushDistance = 5; } else if (distanceToCenter > 10 && distanceToCenter < 20) { pushDistance = 2; } else if (distanceToCenter < 10) { pushDistance = .5; } destination = Functions.pointAlongLine(CENTER_POINT, targetSheep, pushDistance); calculateDestination = false; } double angleGapToSheep = Functions.getAngleOfTrajectory(destination, targetSheep); Point idealLocation = Functions.getMoveInDirection(targetSheep, angleGapToSheep, 1.0); Point moveLocation = Functions.getMoveTowardPoint(current, idealLocation); // make this more robust, crossing gate and distance check Functions.makePointValid(current, moveLocation); return moveLocation; } } protected ArrayList<Integer> getDistanceSortedIndices(final Point[] sheeps, final Point pt, ArrayList<Integer> sheepToCheck ) { Collections.sort(sheepToCheck, new Comparator<Integer>() { @Override public int compare(Integer arg0, Integer arg1) { return (int) Math.signum(Functions.dist(sheeps[arg0], pt) - Functions.dist(sheeps[arg1], pt)); } }); return sheepToCheck; } private Point anticipateSheepMovement(Point me, Point targetSheep) { double angleDogToSheep = Functions.getAngleOfTrajectory(me, targetSheep); if (Functions.withinRunDistance(targetSheep, me)) { targetSheep = Functions.getMoveInDirection(targetSheep, angleDogToSheep, 1.0); } else if (Functions.withinWalkDistance(targetSheep, me)) { targetSheep = Functions.getMoveInDirection(targetSheep, angleDogToSheep, 0.1); } return targetSheep; } }
[ "knk2110@columbia.edu" ]
knk2110@columbia.edu
6198a306816ba24f7944f1b8ecafcae4bf5dd73c
8801a392d5952a15ad0d831bf48fda62234a5e18
/src/main/java/edu/forty/bits/problemsolving/competitive/hackerrank/hackinterview/v/JewelGame.java
6ba31f81e3f82d463c2d88695cf4ab03018807aa
[]
no_license
namannigam-zz/forty-bits-of-learning
c4fdbef796a2403e4567fa4b9989e0726c59e095
decb9ac61272cdb8b3317fe411ec453b788353a8
refs/heads/master
2023-01-09T09:15:02.471950
2020-11-12T16:59:46
2020-11-12T16:59:46
null
0
0
null
null
null
null
UTF-8
Java
false
false
911
java
package edu.forty.bits.problemsolving.competitive.hackerrank.hackinterview.v; import java.util.Scanner; import java.util.Stack; import java.util.stream.IntStream; public class JewelGame { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int t = scanner.nextInt(); IntStream.range(0, t).forEach(tItr -> { String s = scanner.next(); int y = getMaxScore(s); System.out.println(y); }); } public static int getMaxScore(String jewels) { int res = 0; Stack<Character> stack = new Stack<>(); for (int i = 0; i < jewels.length(); i++) { if (stack.size() > 0 && stack.peek() == jewels.charAt(i)) { res++; stack.pop(); } else { stack.add(jewels.charAt(i)); } } return res; } }
[ "namannigam12@gmail.com" ]
namannigam12@gmail.com
9148545917b2a3dc11142c34fa88a553357aafea
967502523508f5bb48fdaac93b33e4c4aca20a4b
/aws-java-sdk-rds/src/main/java/com/amazonaws/services/rds/model/transform/RestoreDBClusterFromSnapshotRequestMarshaller.java
4c81253a8604781933948319e3ab36ad4c58d271
[ "Apache-2.0", "JSON" ]
permissive
hanjk1234/aws-sdk-java
3ac0d8a9bf6f7d9bf1bc5db8e73a441375df10c0
07da997c6b05ae068230401921860f5e81086c58
refs/heads/master
2021-01-17T18:25:34.913778
2015-10-23T03:20:07
2015-10-23T03:20:07
44,951,249
1
0
null
2015-10-26T06:53:25
2015-10-26T06:53:24
null
UTF-8
Java
false
false
5,359
java
/* * Copyright 2010-2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file 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.amazonaws.services.rds.model.transform; import java.util.HashMap; import java.util.List; import java.util.Map; import com.amazonaws.AmazonClientException; import com.amazonaws.Request; import com.amazonaws.DefaultRequest; import com.amazonaws.internal.ListWithAutoConstructFlag; import com.amazonaws.services.rds.model.*; import com.amazonaws.transform.Marshaller; import com.amazonaws.util.StringUtils; /** * Restore D B Cluster From Snapshot Request Marshaller */ public class RestoreDBClusterFromSnapshotRequestMarshaller implements Marshaller<Request<RestoreDBClusterFromSnapshotRequest>, RestoreDBClusterFromSnapshotRequest> { public Request<RestoreDBClusterFromSnapshotRequest> marshall(RestoreDBClusterFromSnapshotRequest restoreDBClusterFromSnapshotRequest) { if (restoreDBClusterFromSnapshotRequest == null) { throw new AmazonClientException("Invalid argument passed to marshall(...)"); } Request<RestoreDBClusterFromSnapshotRequest> request = new DefaultRequest<RestoreDBClusterFromSnapshotRequest>(restoreDBClusterFromSnapshotRequest, "AmazonRDS"); request.addParameter("Action", "RestoreDBClusterFromSnapshot"); request.addParameter("Version", "2014-10-31"); java.util.List<String> availabilityZonesList = restoreDBClusterFromSnapshotRequest.getAvailabilityZones(); int availabilityZonesListIndex = 1; for (String availabilityZonesListValue : availabilityZonesList) { if (availabilityZonesListValue != null) { request.addParameter("AvailabilityZones.AvailabilityZone." + availabilityZonesListIndex, StringUtils.fromString(availabilityZonesListValue)); } availabilityZonesListIndex++; } if (restoreDBClusterFromSnapshotRequest.getDBClusterIdentifier() != null) { request.addParameter("DBClusterIdentifier", StringUtils.fromString(restoreDBClusterFromSnapshotRequest.getDBClusterIdentifier())); } if (restoreDBClusterFromSnapshotRequest.getSnapshotIdentifier() != null) { request.addParameter("SnapshotIdentifier", StringUtils.fromString(restoreDBClusterFromSnapshotRequest.getSnapshotIdentifier())); } if (restoreDBClusterFromSnapshotRequest.getEngine() != null) { request.addParameter("Engine", StringUtils.fromString(restoreDBClusterFromSnapshotRequest.getEngine())); } if (restoreDBClusterFromSnapshotRequest.getEngineVersion() != null) { request.addParameter("EngineVersion", StringUtils.fromString(restoreDBClusterFromSnapshotRequest.getEngineVersion())); } if (restoreDBClusterFromSnapshotRequest.getPort() != null) { request.addParameter("Port", StringUtils.fromInteger(restoreDBClusterFromSnapshotRequest.getPort())); } if (restoreDBClusterFromSnapshotRequest.getDBSubnetGroupName() != null) { request.addParameter("DBSubnetGroupName", StringUtils.fromString(restoreDBClusterFromSnapshotRequest.getDBSubnetGroupName())); } if (restoreDBClusterFromSnapshotRequest.getDatabaseName() != null) { request.addParameter("DatabaseName", StringUtils.fromString(restoreDBClusterFromSnapshotRequest.getDatabaseName())); } if (restoreDBClusterFromSnapshotRequest.getOptionGroupName() != null) { request.addParameter("OptionGroupName", StringUtils.fromString(restoreDBClusterFromSnapshotRequest.getOptionGroupName())); } java.util.List<String> vpcSecurityGroupIdsList = restoreDBClusterFromSnapshotRequest.getVpcSecurityGroupIds(); int vpcSecurityGroupIdsListIndex = 1; for (String vpcSecurityGroupIdsListValue : vpcSecurityGroupIdsList) { if (vpcSecurityGroupIdsListValue != null) { request.addParameter("VpcSecurityGroupIds.VpcSecurityGroupId." + vpcSecurityGroupIdsListIndex, StringUtils.fromString(vpcSecurityGroupIdsListValue)); } vpcSecurityGroupIdsListIndex++; } java.util.List<Tag> tagsList = restoreDBClusterFromSnapshotRequest.getTags(); int tagsListIndex = 1; for (Tag tagsListValue : tagsList) { Tag tagMember = tagsListValue; if (tagMember != null) { if (tagMember.getKey() != null) { request.addParameter("Tags.Tag." + tagsListIndex + ".Key", StringUtils.fromString(tagMember.getKey())); } if (tagMember.getValue() != null) { request.addParameter("Tags.Tag." + tagsListIndex + ".Value", StringUtils.fromString(tagMember.getValue())); } } tagsListIndex++; } return request; } }
[ "aws@amazon.com" ]
aws@amazon.com
eb0e94e35b1c09f00b0878ddf580f3f4f8606bfe
281c77b5b06b9f6156453ebc4a4a047cdcbbea2a
/src/main/java/org/raosantosh/algorithms/leetcode/twopointer/ShortSubarraySum.java
7c07c5c78c73c751a2849323da54e7be3164acb4
[]
no_license
raosantosh/algorithms
ff05a76f5a938772442d1558140711986e60fd6d
3ea7b4b203c4391375023bcf853399654a0133a9
refs/heads/master
2021-01-19T08:39:51.157885
2018-12-06T21:51:30
2018-12-06T21:51:30
87,657,483
0
0
null
null
null
null
UTF-8
Java
false
false
5,259
java
package org.raosantosh.algorithms.leetcode.twopointer; import java.util.Deque; import java.util.LinkedList; import java.util.concurrent.LinkedBlockingDeque; /** * Created by s.rao on 7/3/18. * Return the length of the shortest, non-empty, contiguous subarray of A with sum at least K. * * If there is no non-empty subarray with sum at least K, return -1. * * * * Example 1: * * Input: A = [1], K = 1 * Output: 1 * Example 2: * * Input: A = [1,2], K = 4 * Output: -1 * Example 3: * * Input: A = [2,-1,2], K = 3 * Output: 3 */ public class ShortSubarraySum { public int shortestSubarray(int []A ,int K) { int [] sums = new int[A.length + 1]; for(int i =1 ; i <= A.length; ++i) { sums[i] += sums[i - 1] + A[i-1]; } Deque<Integer> myQueue = new LinkedList<>(); int minLengh = Integer.MAX_VALUE; for(int i=0; i < sums.length; ++i) { while(!myQueue.isEmpty() && sums[i] <= sums[myQueue.getLast()]) myQueue.removeLast(); while (!myQueue.isEmpty() && (sums[i] - sums[myQueue.getFirst()]) >= K) minLengh = Math.min(minLengh, i - myQueue.removeFirst()); myQueue.add(i); } return (minLengh == Integer.MAX_VALUE) ? -1 : minLengh ; } public int shortestSubarrayXY(int []A ,int K) { int minLength = Integer.MAX_VALUE; for(int i = A.length -1 ;i >= 0 ; --i) { int currentStart = i ; int currentSum = A[currentStart]; while(currentSum < K && currentStart > 0) { currentSum += A[--currentStart]; } if(currentSum >= K) minLength = Math.min(minLength, (i - currentStart + 1)); } return (minLength == Integer.MAX_VALUE) ? - 1 : minLength; } public int shortestSubarrayFail(int []A, int K) { int minStart = 0; int minEnd = -2; int currentStart = 0; int currentSum = 0; for(int i = 0 ; i < A.length; ++i) { int currentNumber = A[i]; currentSum += currentNumber; if(currentSum < K) continue; else { int currentDistance = i - currentStart ; if(currentDistance < (minEnd-minStart) || minEnd == -2) { minStart = currentStart; minEnd = i; } currentSum -= A[currentStart++]; int tempSum = currentSum; int tempStart = currentStart; while(i >= tempStart) { if (tempSum >= K) { int distance = (i - tempStart); if (distance < (minEnd - minStart)) { minStart = tempStart; currentStart = tempStart; currentSum = tempSum; minEnd = i; } } tempSum -= A[tempStart++]; } } } return (minEnd - minStart + 1); } public int shortestSubarrayX(int[] A, int K) { int currentSum = 0; int currentStart = 0; int minStart = 0; int minEnd = -1; for (int i = 0; i < A.length; ++i) { if (currentSum + A[i] < K) { currentSum += A[i]; } else { currentSum += A[i]; while (currentStart < i) { if ((((i - currentStart) < (minEnd - minStart)) || minEnd == -1 ) && (currentSum >= K) ) { minEnd = i + 1; minStart = currentStart; } currentSum -= A[currentStart++]; } } } return (minEnd - minStart); } public int shortestSubarrayNew(int[] A, int K) { int currentSum = 0; int currentStart = 0; int minStart = 0; int minEnd = -1; for (int i = 0; i < A.length; ++i) { if (currentSum + A[i] < K) { currentSum += A[i]; } else { currentSum += A[i]; while (currentSum >= K) { if (((i - currentStart) < (minEnd - minStart)) || minEnd == -1) { minEnd = i + 1; minStart = currentStart; } currentSum -= A[currentStart++]; } } } return (minEnd - minStart); } public int shortestSubarrayBF(int[] A, int K) { int currentSum = 0; int minStart = 0; int minEnd = -1; for (int i = 0; i < A.length; ++i) { currentSum = 0; for (int j = i + 1; j <= A.length; ++j) { currentSum += A[j - 1]; if (currentSum >= K) { if (((j - i) < (minEnd - minStart)) || minEnd == -1) { minEnd = j; minStart = i; } continue; } } } return (minEnd - minStart); } public static void main(String args[]) { ShortSubarraySum summer = new ShortSubarraySum(); int[] num = new int[1]; num[0] = 1; System.out.println(summer.shortestSubarray(arrayFromString("1"), 1)); System.out.println(summer.shortestSubarray(arrayFromString("1,2"), 4)); System.out.println(summer.shortestSubarray(arrayFromString("2,-1,2"), 3)); System.out.println(summer.shortestSubarray(arrayFromString("56,-21,56,35,-9"), 61)); System.out.println(summer.shortestSubarray(arrayFromString("-28,81,-20,28,-29"), 89)); } public static int[] arrayFromString(String s) { String [] splits = s.split(","); int [] result = new int[splits.length]; for(int i = 0; i < splits.length; ++i) { result[i] = Integer.valueOf(splits[i]); } return result; } }
[ "s.rao@criteo.com" ]
s.rao@criteo.com
d1ccfac2ca55cf484916f2d0a6cf0fa521e8bce6
52a30545fdec188cac7d78f034f3a56b4c63c0ea
/src/rps.java
c6d8b40489779faff12cdfbac5d64e180ea0c67b
[]
no_license
Brienyll/rockPaper
79eca9615844f09ce0ae5efb3e4726476f712f1a
21ba30303fe4ace9d52cead8772add90d9925241
refs/heads/master
2021-01-20T20:41:42.093210
2016-06-20T06:12:11
2016-06-20T06:12:11
61,521,052
0
0
null
null
null
null
UTF-8
Java
false
false
6,885
java
import java.util.Random; /** * Created by brienyll on 6/19/2016. */ public class rps { int comp1score, comp2score, tieCount; public void choices(int comp1, int comp2) { for (int i = 0; i <100; i++) { Random rand = new Random(); comp1 = rand.nextInt(4); comp2 = rand.nextInt(4); /* 0 = rock 1 = scissors 2 = paper 3 = lizard 4 = spock */ System.out.println("AI 1 picked " + comp1 + " AI 2 picked " + comp2); if (comp1 == comp2) { System.out.println("tie game"); tieCount += 1; // comp 1 chose rock } else if (comp1 == 0) { // comp 2 chose scissors if (comp2 == 1) { System.out.println("Computer 1 picked Rock and Computer 2 picked Scissors"); System.out.println("Computer 1 wins"); comp1score += 1; // comp 2 chose paper } else if (comp2 == 2) { System.out.println("Computer 1 picked Rock and Computer 2 picked Paper"); System.out.println("Computer 2 wins"); comp2score += 1; // comp 2 chose lizard } else if (comp2 == 3) { System.out.println("Computer 1 picked Rock and Computer 2 picked Lizard"); System.out.println("Computer 1 wins"); comp1score += 1; // comp 2 chose spock } else { System.out.println("Computer 1 picked Rock and Computer 2 picked Spock"); System.out.println("Computer 2 wins"); comp2score += 1; } // comp 1 chose scissors } else if (comp1 == 1) { // comp 2 chose rock if (comp2 == 0) { System.out.println("Computer 1 picked Scissors and Computer 2 picked Rock"); System.out.println("Computer 2 wins"); comp2score += 1; // comp 2 chose Paper } else if (comp2 == 2) { System.out.println("Computer 1 picked Scissors and Computer 2 picked Paper"); System.out.println("Computer 1 wins"); comp1score += 1; // comp 2 chose lizard } else if (comp2 == 3) { System.out.println("Computer 1 picked Scissors and Computer 2 picked Lizard"); System.out.println("Computer 2 wins"); comp2score += 1; // comp 2 chose spock } else { System.out.println("Computer 1 picked Scissors and Computer 2 picked Spock"); System.out.println("Computer 1 wins"); comp1score += 1; } // comp 1 chose paper } else if (comp1 == 2) { // comp 2 chose Rock if (comp2 == 0) { System.out.println("Computer 1 picked Paper and Computer 2 picked Rock"); System.out.println("Computer 1 wins"); comp1score += 1; // comp 2 chose Scissors } else if (comp2 == 1) { System.out.println("Computer 1 picked Paper and Computer 2 picked Scissors"); System.out.println("Computer 2 wins, Scissors cuts Paper"); comp2score += 1; // comp 2 chose lizard } else if (comp2 == 3) { System.out.println("Computer 1 picked Paper and Computer 2 picked Lizard"); System.out.println("Computer 2 wins"); comp2score += 1; // comp 2 chose spock } else { System.out.println("Computer 1 picked Paper and Computer 2 picked Spock"); System.out.println("Computer 1 wins"); comp1score += 1; } //comp 1 chose lizard } else if (comp1 == 3) { // comp 2 chose Rock if (comp2 == 0) { System.out.println("Computer 1 picked Lizard and Computer 2 picked Rock"); System.out.println("Computer 2 wins"); comp2score += 1; // comp 2 chose Scissors } else if (comp2 == 1) { System.out.println("Computer 1 picked Lizard and Computer 2 picked Scissors"); System.out.println("Computer 2 wins"); comp2score += 1; // comp 2 chose Paper } else if (comp2 == 2) { System.out.println("Computer 1 picked Lizard and Computer 2 picked Paper"); System.out.println("Computer 1 wins"); comp1score += 1; // comp 2 chose spock } else { System.out.println("Computer 1 picked Lizard and Computer 2 picked Spock"); System.out.println("Computer 1 wins"); comp1score += 1; } // comp 1 chose Spock } else if (comp1 == 4) { // comp 2 chose rock if (comp2 == 0) { System.out.println("Computer 1 picked Spock and Computer 2 picked Rock"); System.out.println("Computer 1 wins"); comp1score += 1; // comp 2 chose scissors } else if (comp2 == 1) { System.out.println("Computer 1 picked Spock and Computer 2 picked Scissors"); System.out.println("Computer 1 wins"); comp1score += 1; // comp 2 chose paper } else if (comp2 == 2) { System.out.println("Computer 1 picked Spock and Computer 2 picked Paper"); System.out.println("Computer 2 wins"); comp2score += 1; // comp 2 chose lizard } else { System.out.println("Computer 1 picked Spock and Computer 2 picked Lizard"); System.out.println("Computer 2 wins"); comp2score += 1; } } } System.out.println("\nPlayer 1 won " +comp1score+ " times"); System.out.println("Player 2 won " +comp2score+ " times"); System.out.println("The game was tied " +tieCount+ " times"); } public static void main(String[] args){ rps rps = new rps(); rps.choices(0,0); } }
[ "brix.angeles@gmail.com" ]
brix.angeles@gmail.com
7a80d02170d6d90bd254e4980f5de06f4723c897
e31ab96cb40f6a5f5e8619c63420e67d48a346dd
/app/src/main/java/com/example/christian/fitapp2/DBHelper.java
6909d85c700396f9f24a239be26a1214bc356e89
[]
no_license
christianbayer/fitapp
64300ee82853167d81d9195cfda70c5623d0929e
41a03cdc8708346ff169c6fb2ee6f12f57502f1c
refs/heads/master
2021-04-15T08:24:52.569014
2018-03-26T17:32:18
2018-03-26T17:32:18
126,865,413
0
0
null
null
null
null
UTF-8
Java
false
false
839
java
package com.example.christian.fitapp2; import android.content.Context; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteOpenHelper; import android.util.Log; public class DBHelper extends SQLiteOpenHelper { public DBHelper(Context context) { super(context, DBContract.DATABASE_NAME, null, DBContract.DATABASE_VERSION); } @Override public void onCreate(SQLiteDatabase sqLiteDatabase) { sqLiteDatabase.execSQL(DBContract.Circuit.CREATE_TABLE); sqLiteDatabase.execSQL(DBContract.Route.CREATE_TABLE); } @Override public void onUpgrade(SQLiteDatabase sqLiteDatabase, int i, int i1) { sqLiteDatabase.execSQL(DBContract.Circuit.DELETE_TABLE); sqLiteDatabase.execSQL(DBContract.Route.DELETE_TABLE); onCreate(sqLiteDatabase); } }
[ "christian.bayer@universo.univates.br" ]
christian.bayer@universo.univates.br
e34de86f9297fe167308609af56776f58d75a957
c295355f9e3be2bedb3a7055a73ee3842d46bb22
/SBFGTD/src/gtd/util/EntryReturningIntegerKeyedHashMap.java
82aefc11b3ec2d96f37afe55a1646343b25e2d4b
[]
no_license
cwi-swat/sbfgtd
1c3fd20d04c175022ff33199dcf3ac52c9be62e9
fc9417e2e88a05b656bdc39b5d758dd118b91b81
refs/heads/master
2018-12-31T12:47:10.299719
2012-07-28T09:16:02
2012-07-28T09:16:02
null
0
0
null
null
null
null
UTF-8
Java
false
false
5,042
java
package gtd.util; import java.util.Iterator; @SuppressWarnings("unchecked") public class EntryReturningIntegerKeyedHashMap<V>{ private final static int DEFAULT_BIT_SIZE = 2; private Entry<V>[] entries; private int hashMask; private int bitSize; private int threshold; private int load; public EntryReturningIntegerKeyedHashMap(){ super(); int nrOfEntries = 1 << (bitSize = DEFAULT_BIT_SIZE); hashMask = nrOfEntries - 1; entries = (Entry<V>[]) new Entry[nrOfEntries]; threshold = nrOfEntries; load = 0; } public EntryReturningIntegerKeyedHashMap(EntryReturningIntegerKeyedHashMap<V> integerKeyedHashMap){ super(); hashMask = integerKeyedHashMap.hashMask; bitSize = integerKeyedHashMap.bitSize; entries = (Entry<V>[]) new Entry[hashMask + 1]; System.arraycopy(integerKeyedHashMap.entries, 0, entries, 0, hashMask + 1); threshold = hashMask + 1; load = integerKeyedHashMap.load; } private void rehash(){ int nrOfEntries = 1 << (++bitSize); int newHashMask = nrOfEntries - 1; Entry<V>[] oldEntries = entries; Entry<V>[] newEntries = (Entry<V>[]) new Entry[nrOfEntries]; Entry<V> currentEntryRoot = new Entry<V>(-1, null, null); Entry<V> shiftedEntryRoot = new Entry<V>(-1, null, null); int oldSize = oldEntries.length; for(int i = oldSize - 1; i >= 0; --i){ Entry<V> e = oldEntries[i]; if(e != null){ Entry<V> lastCurrentEntry = currentEntryRoot; Entry<V> lastShiftedEntry = shiftedEntryRoot; int lastPosition = -1; do{ int position = e.key & newHashMask; if(position == i){ if(position != lastPosition) lastCurrentEntry.next = e; lastCurrentEntry = e; }else{ if(position != lastPosition) lastShiftedEntry.next = e; lastShiftedEntry = e; } e = e.next; }while(e != null); lastCurrentEntry.next = null; lastShiftedEntry.next = null; newEntries[i] = currentEntryRoot.next; newEntries[i | oldSize] = shiftedEntryRoot.next; } } threshold <<= 1; entries = newEntries; hashMask = newHashMask; } private void ensureCapacity(){ if(load > threshold){ rehash(); } } public V putUnsafe(int key, V value){ ensureCapacity(); int position = key & hashMask; entries[position] = new Entry<V>(key, value, entries[position]); ++load; return null; } public boolean containsKey(int key){ int position = key & hashMask; Entry<V> entry = entries[position]; while(entry != null){ if(entry.key == key) return true; entry = entry.next; } return false; } public Entry<V> get(int key){ int position = key & hashMask; Entry<V> entry = entries[position]; while(entry != null){ if(entry.key == key) return entry; entry = entry.next; } return null; } public V remove(int key){ int position = key & hashMask; Entry<V> previous = null; Entry<V> currentStartEntry = entries[position]; if(currentStartEntry != null){ Entry<V> entry = currentStartEntry; do{ if(entry.key == key){ if(previous == null){ entries[position] = entry.next; }else{ previous.next = entry.next; } load--; return entry.value; } previous = entry; }while((entry = entry.next) != null); } return null; } public int size(){ return load; } public void clear(){ int nrOfEntries = 1 << (bitSize = DEFAULT_BIT_SIZE); hashMask = nrOfEntries - 1; entries = (Entry<V>[]) new Entry[nrOfEntries]; threshold = nrOfEntries; load = 0; } public static class Entry<V>{ public final int key; public V value; public Entry<V> next; public Entry(int key, V value, Entry<V> next){ super(); this.key = key; this.value = value; this.next = next; } } public Iterator<Entry<V>> iterator(){ return new EntryIterator<V>(this); } private static class EntryIterator<V> implements Iterator<Entry<V>>{ private final Entry<V>[] data; private Entry<V> current; private int index; public EntryIterator(EntryReturningIntegerKeyedHashMap<V> flaggedValueIntegerKeyedHashMap){ super(); data = flaggedValueIntegerKeyedHashMap.entries; index = data.length - 1; current = new Entry<V>(-1, null, data[index]); locateNext(); } private void locateNext(){ Entry<V> next = current.next; if(next != null){ current = next; return; } for(int i = index - 1; i >= 0 ; i--){ Entry<V> entry = data[i]; if(entry != null){ current = entry; index = i; return; } } current = null; index = 0; } public boolean hasNext(){ return (current != null); } public Entry<V> next(){ if(!hasNext()) throw new UnsupportedOperationException("There are no more elements in this iterator."); Entry<V> entry = current; locateNext(); return entry; } public void remove(){ throw new UnsupportedOperationException("This iterator doesn't support removal."); } } }
[ "arnold.lankamp@gmail.com" ]
arnold.lankamp@gmail.com
a017cfdf7c85faca8a0ddbe4f4732c42c3172616
dadca38f6a772de853704d1955d7cae5cc61dcb0
/src/test/java/dominio/AdicionarPinoTest.java
29d192b841db38420c2b0d1e1a6a38023a8fac4a
[]
no_license
carlosantq/MastermindTest
e5849ed59b20ec42e43cbbf96a7cdf7f3a576954
289e142b4376b4fa1d9843f583102e76b705911c
refs/heads/master
2021-01-22T04:23:38.228732
2017-05-30T17:36:57
2017-05-30T17:36:57
92,458,720
0
0
null
null
null
null
ISO-8859-1
Java
false
false
2,234
java
package dominio; import static org.junit.Assert.*; import java.util.Arrays; import java.util.Collection; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; import org.junit.runners.Parameterized.Parameters; import exceptions.CorInvalidaException; import jogo.Senha; /** * * Esta classe objetiva o teste dos métodos adicionarPino(String corPino) das classes Retorno e Senha. * Os testes são organizados de acordo com a classe a qual eles se referem, utilizado o atributo type * com o valor 0 para testes da classe Retorno e o valor 1 para os testes da classe Senha. */ @RunWith(Parameterized.class) public class AdicionarPinoTest { private String input; private boolean expected; private Retorno retorno; //0 para teste do método da classe retorno e 1 para teste da classe senha private int type; private Senha senha; public AdicionarPinoTest(String input, boolean expected, int type){ this.input = input; this.expected = expected; this.type = type; } @Before public void setUp(){ retorno = new Retorno(); senha = new Senha(); } @Parameters public static Collection<Object[]> values(){ return Arrays.asList(new Object[][] { //Classe Retorno {"preto", true, 0}, {"branco", true, 0}, {"PRETO", false, 0}, {"BRANCO", false, 0}, {null, false, 0}, {"azul", false, 0}, //Classe Senha {"vermelho", true, 1}, {"rosa", true, 1}, {"amarelo", true, 1}, {"roxo", true, 1}, {"verde", true, 1}, {"cinza", true, 1}, {null, false, 1}, {"magenta", false, 1}, {"ROXO", false, 1}, }); } @Test public void adicionarPinoTest() throws CorInvalidaException{ if (this.expected == true){ if (this.type == 0){ assertEquals(this.expected, retorno.adicionarPino(this.input)); }else{ assertEquals(this.expected, senha.adicionarPino(this.input)); } }else{ try{ if (this.type == 0){ retorno.adicionarPino(this.input); }else{ senha.adicionarPino(this.input); } fail("Cor para o pino inválida"); }catch(CorInvalidaException c){ } } } }
[ "carlosantonio.o.n@outlook.com" ]
carlosantonio.o.n@outlook.com
e59271aed5eff9f08106155ac81844b33815c057
fa27b191daac56942eda0d950c6ae542fe2d8f33
/xylibrary/src/main/java/pub/xylibrary/bone/interfaces/AdapterCallBack.java
cb76ae4193151e0e70d7b1ae8b8c56531838b037
[ "Apache-2.0" ]
permissive
LinXueyuanStdio/Object
e92776b8e947370671b40b1bdce4c64095b4e0a7
4ebc9ce6ead29cf9fc7a82890cbe66055570a179
refs/heads/master
2023-01-01T21:28:17.443048
2017-10-22T14:02:20
2017-10-22T14:02:20
107,870,359
0
0
null
null
null
null
UTF-8
Java
false
false
1,411
java
/*Copyright ©2015 TommyLemon(https://github.com/TommyLemon) 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 pub.xylibrary.bone.interfaces; import android.widget.BaseAdapter; /**Adapter使用回调 * @author Lemon * @param <A> adapter名称 * @see #createAdapter * @see #refreshAdapter * @use implements AdapterCallBack<A>,具体参考.DemoListActivity和.DemoListFragment */ public interface AdapterCallBack<A extends BaseAdapter> { /**创建一个Adapter * @return new A(); */ A createAdapter(); /** * BaseAdapter#notifyDataSetChanged()有时无效,有时因列表更新不及时而崩溃,所以需要在自定义adapter内自定义一个刷新方法。 * 为什么不直接让自定义Adapter implement OnRefreshListener,从而直接 onRefreshListener.onRefresh(List<T> list) ? * 因为这样的话会不兼容部分 Android SDK 或 第三方库的Adapter */ void refreshAdapter(); }
[ "761516186@qq.com" ]
761516186@qq.com
d70f5073bc89f4e140c5c84a5afc56c11b57bbe3
20249b30db7bfdb0f5802473fb8ad867e79237f0
/app/src/main/java/com/framgia/soundclound/screen/moretrack/MoreTrackPlayListFragment.java
b369546942bfb509860f3f1ca4f9000cedfac5a7
[]
no_license
nguyentrungduc/hi
618ffb1289310cd49163a1b9a12e0912396c07ba
24b80f32eb74644468427661088adffe3622e930
refs/heads/master
2021-09-04T13:14:09.333361
2018-01-19T03:08:42
2018-01-19T03:08:42
117,946,240
0
2
null
2018-01-19T03:08:43
2018-01-18T07:10:02
Java
UTF-8
Java
false
false
1,974
java
package com.framgia.soundclound.screen.moretrack; import android.databinding.DataBindingUtil; import android.os.Bundle; import android.support.design.widget.BottomSheetDialogFragment; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import com.framgia.soundclound.R; import com.framgia.soundclound.data.model.Track; import com.framgia.soundclound.databinding.FragmentMoreTrackPlaylistBinding; import com.framgia.soundclound.util.Constant; /** * Created by Sony on 1/18/2018. */ public class MoreTrackPlayListFragment extends BottomSheetDialogFragment { private static Calback mCalback; public static MoreTrackPlayListFragment newInstance(Track track, int idAlbum, Calback calback) { MoreTrackPlayListFragment fragment = new MoreTrackPlayListFragment(); setCallback(calback); Bundle args = new Bundle(); args.putParcelable(Constant.ARGUMENT_TRACK, track); args.putInt(Constant.ARGUMENT_ID_ALBUM, idAlbum); fragment.setArguments(args); return fragment; } public MoreTrackPlayListFragment() { } public static void setCallback(Calback callback) { mCalback = callback; } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { // Inflate the layout for this fragment FragmentMoreTrackPlaylistBinding moreTrackBinding = DataBindingUtil.inflate(inflater, R.layout.fragment_more_track_playlist, container, false); MoreTrackViewModel moreTrackViewModel = new MoreTrackViewModel(getContext(), (Track) getArguments().getParcelable(Constant.ARGUMENT_TRACK), (int) getArguments().getInt(Constant.ARGUMENT_ID_ALBUM)); moreTrackBinding.setViewModel(moreTrackViewModel); moreTrackViewModel.setCalback(mCalback); return moreTrackBinding.getRoot(); } }
[ "bui.danh.nam@framgia.com" ]
bui.danh.nam@framgia.com
42e2486bac72711f0957e7193ffc4d375eca422a
e9d94545cebe4ddbe907279184414f25583d6420
/src/test/java/com/example/basic/ConsumerOfProviderTests.java
33a91571ad606be15149fec930f56f275b98c019
[]
no_license
johnshand/basic-consumer-example
8c318480e6732b2edddde64bfb06fd3b502c9b0e
d2671be980244c083c8a4f7a9374b39e78f43264
refs/heads/master
2020-04-14T17:36:47.763044
2019-03-12T17:00:24
2019-03-12T17:00:24
163,986,893
0
0
null
null
null
null
UTF-8
Java
false
false
933
java
package com.example.basic; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringRunner; import java.lang.reflect.Field; import static org.junit.Assert.assertEquals; @RunWith(SpringRunner.class) @SpringBootTest public class ConsumerOfProviderTests { @Test public void intIsReceived() throws NoSuchFieldException { int expectedInt = 2019; //given final ConsumerOfProvider values = new ConsumerOfProvider(); //when values.setSomeInt(expectedInt); //then final Field field = values.getClass().getDeclaredField("someInt"); field.setAccessible(true); try { assertEquals("Fields didn't match", expectedInt, field.get(values)); } catch (IllegalAccessException e) { e.printStackTrace(); } } }
[ "john.shand@moneysupermarket.com" ]
john.shand@moneysupermarket.com
615259223edc73609114223448e1b5bb68bdfcf0
d8062558305d6195ca5d4dbc729c0d710561f623
/spring-boot-study/src/main/java/com/throwsnew/springbootstudy/accessdata/mysql/service/UserService.java
3e07fa5d6e606031bfd99927307abaeaf98978fc
[]
no_license
xianfengsong/someDemo
904c09803803f40da1692939cfbfea7f329644ec
ce9fd33f96c08b9b6c65bdddf83201620a8bfa72
refs/heads/master
2022-06-17T20:48:59.974678
2021-03-31T03:35:16
2021-03-31T03:35:16
119,355,336
0
0
null
null
null
null
UTF-8
Java
false
false
579
java
package com.throwsnew.springbootstudy.accessdata.mysql.service; import com.throwsnew.springbootstudy.accessdata.mysql.model.User; import java.util.List; /** * author Xianfeng <br/> * date 19-7-31 下午4:04 <br/> * Desc: */ public interface UserService { List<User> listUser(); /** * 使用只读事务的list方法 */ List<User> listUserReadOnly(); void insert(List<User> userList); void updateUsers(List<User> userList); /** * 更新并抛出异常 */ void updateUsersFail(List<User> userList); void delete(); }
[ "xianfeng635@gmail.com" ]
xianfeng635@gmail.com
1ec4ee6d02ba9aee90d2260f84682e7d77dee4d1
6ee0bba1bab775487edee4c6551871542b7e9f10
/src/main/java/com/lmw/service/CategoryService.java
749384a5191063e0898a3ab11cba3c7e330b8d7d
[]
no_license
mwangli/mystore-admin-ssm
261b3699fa295da05c677e0ac9ca552a9a443709
70ffdd7b63b1bb0454aa8fc73cf281ddb006d6b7
refs/heads/master
2020-07-20T04:27:59.144708
2019-09-05T13:44:04
2019-09-05T13:44:04
206,573,491
2
0
null
null
null
null
UTF-8
Java
false
false
237
java
package com.lmw.service; import com.lmw.beans.Category; import org.springframework.transaction.annotation.Transactional; import java.util.List; @Transactional public interface CategoryService { List<Category> getAllCategory(); }
[ "li.mingwang@iwhalecloud.com" ]
li.mingwang@iwhalecloud.com
7676b3a4d6613df385202e766089089a3b94a512
52ae5321e6cfccb866e9c7bbfad5cb06aef5c350
/DebuggerDemo/src/innerclass/Main.java
6dbb759a13b2c8364dd84bb433a71002cfe84a71
[]
no_license
bobbyfengb1124/Java-Collections
61eb0e58029b8af2bfae84cd4f034f232f615ff1
89625378af33c1a9e184263b638b80dc9c895f63
refs/heads/master
2021-05-11T01:40:48.147539
2019-04-19T04:05:00
2019-04-19T04:05:00
118,335,455
1
0
null
null
null
null
UTF-8
Java
false
false
1,053
java
package innerclass; import java.util.Scanner; import innerclass.Button.OnClickListener; public class Main { private static Scanner scanner = new Scanner(System.in); private static Button btnPrint = new Button("Print"); public static void main(String[] args) { // class ClickListener implements Button.OnClickListener { // // public ClickListener() { // System.out.println("I've been attached"); // } // // @Override // public void onClick(String title) { // // System.out.println(title + " was clicked"); // // } // // } // btnPrint.setOnClickListener(new ClickListener()); btnPrint.setOnClickListener(new OnClickListener() { @Override public void onClick(String title) { System.out.println(title + " was clicked"); } }); listen(); } private static void listen() { boolean quit = false; while (!quit) { int choice = scanner.nextInt(); scanner.nextLine(); switch (choice) { case 0: quit = true; break; case 1: btnPrint.onClick(); } } } }
[ "bobbyfeng@cse.com.sg" ]
bobbyfeng@cse.com.sg
593cf391ace78046639c54dcf76481e6b217aac1
7efd849eaeb0bcdf6060fc6b05e76be2d5720e6e
/my_first_login/src/main/java/model/Card.java
f61b93ad086281ff303517904127254b0d43d8b6
[]
no_license
mmischek/SEW2016
17eac5076abee14fd4710d9eb7a37dd31f1b798a
4444df2d4788d302aafb3e75fd7dcba5098db0f0
refs/heads/master
2016-09-13T16:23:23.507838
2016-06-10T10:58:07
2016-06-10T10:58:07
56,225,127
0
0
null
null
null
null
UTF-8
Java
false
false
804
java
package model; import java.util.Random; public class Card { private int left; private int right; private int result; public Card() { init(); } // Controller public String show() { result = left * right; return "show"; } private void init() { result = 0; left = (int)(Math.random() * 50) + 1; right = (int)(Math.random() * 50) + 1;// TODO left und right zufaellig befuellen } public String next() { init(); return "next"; } // getter and setter public int getLeft() { return left; } public void setLeft(int left) { this.left = left; } public int getRight() { return right; } public void setRight(int right) { this.right = right; } public int getResult() { return result; } public void setResult(int result) { this.result = result; } }
[ "mmischek@student.tgm.ac.at" ]
mmischek@student.tgm.ac.at
a59835cd20c68c8d8caecb94a810cf060b7bac30
1b2e9e76b04cc5e9d7e4e185b39d0e21dd06a774
/src/se/ledningskollen/api/cableowner/BoundingBox.java
bb78aee64f44b140cfe5da13b2c81c011f25a181
[ "CC0-1.0" ]
permissive
Ledningskollen/ledningskollen-ws-java
fc66e9640705c1be91fb4dd6578da4ecb186c6cb
064a546d60eaa7a552bdf17f586a41f0dd69c9a5
refs/heads/master
2020-12-24T14:56:13.814662
2012-11-28T09:36:44
2012-11-28T09:36:44
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,595
java
package se.ledningskollen.api.cableowner; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for BoundingBox complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;complexType name="BoundingBox"> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element name="MinX" type="{http://www.w3.org/2001/XMLSchema}double"/> * &lt;element name="MaxX" type="{http://www.w3.org/2001/XMLSchema}double"/> * &lt;element name="MinY" type="{http://www.w3.org/2001/XMLSchema}double"/> * &lt;element name="MaxY" type="{http://www.w3.org/2001/XMLSchema}double"/> * &lt;/sequence> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BoundingBox", propOrder = { "minX", "maxX", "minY", "maxY" }) public class BoundingBox { @XmlElement(name = "MinX") protected double minX; @XmlElement(name = "MaxX") protected double maxX; @XmlElement(name = "MinY") protected double minY; @XmlElement(name = "MaxY") protected double maxY; /** * Gets the value of the minX property. * */ public double getMinX() { return minX; } /** * Sets the value of the minX property. * */ public void setMinX(double value) { this.minX = value; } /** * Gets the value of the maxX property. * */ public double getMaxX() { return maxX; } /** * Sets the value of the maxX property. * */ public void setMaxX(double value) { this.maxX = value; } /** * Gets the value of the minY property. * */ public double getMinY() { return minY; } /** * Sets the value of the minY property. * */ public void setMinY(double value) { this.minY = value; } /** * Gets the value of the maxY property. * */ public double getMaxY() { return maxY; } /** * Sets the value of the maxY property. * */ public void setMaxY(double value) { this.maxY = value; } }
[ "per.liedman@kartena.se" ]
per.liedman@kartena.se
27a80ef3ec3f8de62e4fb941c59b27bf0c88ac8b
ae75a6a722a141fab4da1120bd6377c8e8d86be3
/src/main/java/se/lexicon/maria/booklender/entity/Loan.java
82b274e2b9957941ae5fa8dbbfa426c638edf30c
[]
no_license
Mia1251/Exercise_Assignment-master
d0ce1208926b1873fa542c0a4ab43ca1f9add3f5
5834547bcd133545ddf8e9237565240702681eed
refs/heads/master
2023-04-19T05:30:50.692370
2021-05-07T09:37:12
2021-05-07T09:37:12
365,184,558
0
0
null
null
null
null
UTF-8
Java
false
false
780
java
package se.lexicon.maria.booklender.entity; import lombok.Data; import javax.persistence.*; import java.time.LocalDate; @Data @Entity public class Loan { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private long loanId; @ManyToOne(fetch = FetchType.EAGER, cascade = {CascadeType.PERSIST, CascadeType.DETACH, CascadeType.MERGE, CascadeType.PERSIST}) @JoinColumn(name = "library_user_id") private LibraryUser loanTaker; @ManyToOne(fetch = FetchType.EAGER, cascade = {CascadeType.PERSIST, CascadeType.DETACH, CascadeType.MERGE, CascadeType.PERSIST}) @JoinColumn(name = "book_id") private Book book; @Column(nullable = false) private LocalDate loanDate; @Column(name = "_terminated") private boolean terminated; }
[ "svanteomax@gmail.com" ]
svanteomax@gmail.com
8819c93e6bf6f175f62277f23783dae6060809ae
669f9506748c6439cbb30ff6b1915b0aa5b01f11
/src/main/java/com/it/j2ee/modules/common/service/SpringBeanLocator.java
7952892dd9f417f0a1a31f110be24170106d01bc
[]
no_license
johndear/admin-web
4f9bde98e12eca0f7635f6e25f2edcfa88ebdd99
5ccb90c0d399c0a2855066f55044c389197eb14e
refs/heads/master
2022-12-23T06:44:35.648179
2017-11-30T03:29:50
2017-11-30T03:29:50
43,549,585
0
1
null
2022-12-13T19:26:26
2015-10-02T11:36:20
Java
UTF-8
Java
false
false
2,937
java
/* * Created on 2005-4-1 TODO To change the template for this generated file go to * Window - Preferences - Java - Code Style - Code Templates */ package com.it.j2ee.modules.common.service; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.BeansException; import org.springframework.context.ApplicationContext; import org.springframework.context.ApplicationContextAware; import org.springframework.context.support.AbstractApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; import org.springframework.stereotype.Component; import org.springframework.web.context.ContextLoader; import org.springframework.web.context.WebApplicationContext; /** * 框架的基本Spring服务定位器 * * @author Jason TODO To change the template for this generated type comment go * to Window - Preferences - Java - Code Style - Code Templates */ @Component("baseServiceLocator") public class SpringBeanLocator implements ApplicationContextAware { protected static Logger logger = LoggerFactory .getLogger(SpringBeanLocator.class); /** * 基本Spring服务的配置文件 */ private static String[] CONTEXT_FILE_NAME = new String[]{"**/applicationContext*.xml","**/spring*.xml","classpath:**/*.properties"}; private static ApplicationContext fac = null; public synchronized static Object getService(String name) { try { if(fac == null) { getApplicationContext(); } if (fac.containsBean(name)) { return fac.getBean(name); } else { logger.error("In ApplicationContext,bean name:" + name + " is not exist"); } } catch (BeansException e) { //e.printStackTrace(); logger.error("getApplicationContext throw exception", e); return null; } return null; } /* @SuppressWarnings("unchecked") public static <T> T getService(String name, Class<T> clz) { try { ApplicationContext ac = getApplicationContext(); if (ac != null && ac.containsBean(name)) { return (T) ac.getBean(name, clz); } } catch (BeansException e) { //e.printStackTrace(); logger.error("getApplicationContext throw exception", e); return null; } return null; }*/ // 如果没有当前上下文,自动从文件装载,用于调试的 private synchronized static ApplicationContext getApplicationContext() { fac = ContextLoader.getCurrentWebApplicationContext(); if (fac == null) { logger.error("WebApplicationContext is not exist"); fac = new ClassPathXmlApplicationContext(CONTEXT_FILE_NAME); //fac = new ClassPathXmlApplicationContext(new String[]{"test/applicationContext_test.xml","classpath:**/*.properties"}); ((AbstractApplicationContext) fac).registerShutdownHook(); } return fac; } public void setApplicationContext(ApplicationContext ac) throws BeansException { // TODO Auto-generated method stub fac = ac; } }
[ "ls123456" ]
ls123456
0852ab1dd006ddc0079c1d01588de1bb02489c61
a5a8f5d009e4c8c310344ba788e59041b0ce4e35
/app/src/main/java/ole/apps/videoplayers/loaderUrl.java
8d24c150d8ab2d4820d2a793b34009b8cee31090
[]
no_license
OlegarioLopez/VideoPlayers
8f0f9f71c1482ed30288dcc94c83f46b4d601910
a6bd0f8d5c41a04f833fc385d9925d195de34a77
refs/heads/master
2021-05-26T04:19:17.892965
2020-04-16T16:56:47
2020-04-16T16:56:47
254,047,487
0
0
null
null
null
null
UTF-8
Java
false
false
1,382
java
package ole.apps.videoplayers; import androidx.appcompat.app.AppCompatActivity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.EditText; public class loaderUrl extends AppCompatActivity { private String url; private Button boton_reproducir; private EditText edit_text_url_entrada; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_cargar__u_r_l); boton_reproducir=(Button)findViewById(R.id.boton_reproducir); edit_text_url_entrada=(EditText)findViewById(R.id.edit_text_url_entrada); } public void reproducir(View view){ url=edit_text_url_entrada.getText().toString(); if(url.contains(".mp4")) { Intent intent2 = new Intent(this, reproductor.class); intent2.putExtra("url", url); startActivity(intent2); } else if(url.contains("vimeo")) { Intent intent3 = new Intent(this, vimeoPlayer.class); intent3.putExtra("url", url); startActivity(intent3); } else{ Intent intent = new Intent(this, youtubePlayer.class); intent.putExtra("url", url); startActivity(intent); } } }
[ "olopezl@ayesa.es" ]
olopezl@ayesa.es
ec816caea4483eb2ef95989ab276349f73d247a7
87575d8481ed2eb560195349668dec2da66efc77
/src/main/java/org/thisamericandream/sgit/FileMode.java
c7f18c2b9bcc00a88a677486b1edb31dbf351a2a
[]
no_license
jasongilanfarr/sgit
a22901cf4242126bfd81cd85a0b9802fece703fa
3f8277273647588b943285e6821e2e50d6f90410
refs/heads/master
2016-09-10T22:52:07.807240
2013-04-17T18:21:02
2013-04-17T18:21:02
9,209,610
0
0
null
null
null
null
UTF-8
Java
false
false
411
java
package org.thisamericandream.sgit; public enum FileMode { New(0000000), Tree(0040000), Blob(0100644), Executable(0100755), Link(0120000), Commit(0160000); public final int id; FileMode(int id) { this.id = id; } public static FileMode forId(int id) { for(FileMode lvl: FileMode.values()) { if (lvl.id == id) { return lvl; } } return null; } }
[ "jason.gilanfarr@gmail.com" ]
jason.gilanfarr@gmail.com
cac5eca51c4fca1db1014a0426ffdb3063979bf1
36d16e65c70209813f97e868102c69619d8a48a2
/registry/src/org/dublincore/dcregistry/services/remoteVocabularyTermsSummaryClient.java
ba0811f3a5846220c1ef0e15c9e9fa37c8d43813
[]
no_license
dcmi/repository
821678061932e12980ab99d8428e7c53df242913
dfbd0b6975c2506ba3001a45b2e4876484d1613b
refs/heads/master
2023-05-25T07:01:50.705835
2021-06-30T04:15:57
2021-06-30T04:15:57
92,155,595
26
15
null
null
null
null
UTF-8
Java
false
false
3,633
java
/* * The contents of this file, as updated from time to time by Dublin Core * Metadata Initiative (DCMI), are subject to the Dublin Core Public * License Version 1.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a current copy of the * License at http://dublincore.org/dcpl/. * * Software distributed under the License is distributed on an "AS IS" * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See * the License for the specific language governing rights and * limitations under the License. * * This software consists of voluntary contributions made by many * individuals on behalf of the Dublin Core Metadata Initiative. For * more information on the Dublin Core Metadata Initiative, please see * http://dublincore.org/. * * This is Original Code. * * The Developer of the Original Code is: * H.Wagner <wagnerh@oclc.org> * * Portions created by DCMI are Copyright (C) 2000. * */ package org.dublincore.dcregistry.services; import javax.servlet.*; import javax.servlet.http.*; import java.io.*; import java.net.*; import java.util.*; import java.text.BreakIterator; import org.w3c.dom.*; import javax.xml.transform.dom.*; import javax.xml.parsers.*; import org.apache.xpath.*; import javax.xml.transform.TransformerFactory; import javax.xml.transform.Transformer; import javax.xml.transform.Source; import javax.xml.transform.stream.StreamSource; import javax.xml.transform.stream.StreamResult; public class remoteVocabularyTermsSummaryClient extends remoteRegistryServlet { String port = null; String saveOption = "N"; String localFileName = null; public void doPost (HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { HttpSession session = request.getSession(true); getInputParameters(request, session); org.dublincore.dcregistry.services.VocabularyTerms binding = null; java.net.URL portAddress = new java.net.URL(port); try { binding = new org.dublincore.dcregistry.services.VocabularyTermsSummaryLocator().getvocabularyTermsSummary(portAddress); } catch (javax.xml.rpc.ServiceException jre) { if(jre.getLinkedCause()!=null) jre.getLinkedCause().printStackTrace(); } /* services.proxy.VocabularyTerms binding = null; binding = new services.proxy.VocabularyTermsSummaryLocator().getvocabularyTermsSummary(); value = binding.listVocabularyTerms(); */ try { java.lang.String value = null; value = binding.listVocabularyTerms(port); if (saveOption.equals("Y")) { System.out.println("writing file: " + localFileName); writeFile(localFileName, value); } Document doc = null; DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); DocumentBuilder db = dbf.newDocumentBuilder(); doc = db.newDocument(); Element root = (Element) doc.createElement("root"); doc.appendChild(root); root.appendChild(doc.createTextNode(value)); transform(response, doc, "displayRawRDF.xsl"); } catch (Exception e) { System.out.println("error importing data"); System.err.println(e); e.printStackTrace(); } } protected void setXSLTParms (Transformer transformer) { } public void getInputParameters (HttpServletRequest request, HttpSession session) { port = request.getParameter("port"); saveOption = request.getParameter("saveOption"); localFileName = request.getParameter("localFileName"); } }
[ "tom@tombaker.org" ]
tom@tombaker.org
7a8b3b1befbe710cd495c524ec16ce157602a22f
56e98a4755aaa56b2559abac1964ce2e3f9d0776
/factorial.java
b1e3894c86145dcfa8ab92fd78981a238a21ab28
[]
no_license
ayushbindlish/JavaPractice
4ece85e73f02d67ba422b3cdc6a48c4dedfb726d
f67ab8583876bcd38bb42e0131b57f3afa9d11af
refs/heads/master
2022-02-01T23:26:59.794272
2019-07-21T08:33:07
2019-07-21T08:33:07
null
0
0
null
null
null
null
UTF-8
Java
false
false
173
java
class factorial { public static void main(String args[]) { long num=4, fact=1; for(int i=1;i<=num;i++) {fact=fact*i; } System.out.println("Factorial is "+fact); }}
[ "noreply@github.com" ]
noreply@github.com
6d679f81430d04b069bb80716963695a9a7897ba
4e84c9dbc699cfdf090a2872a7e2bdf79b9dc971
/fanweHybridLive/src/main/java/com/fanwe/o2o/event/O2OEShoppingCartDialogShowing.java
7589d571bbea3ecc045027efab81673c01471014
[]
no_license
nickoo123/FanweLive11
d994f5b6d36a0dd7ac06858f8c78239bfca629a4
2cecccf5c6795c4492f6c9d213d6cf27b6188dd4
refs/heads/master
2023-03-19T18:17:29.493984
2020-03-20T08:50:41
2020-03-20T08:50:41
null
0
0
null
null
null
null
UTF-8
Java
false
false
213
java
package com.fanwe.o2o.event; /** * Created by Administrator on 2016/9/19. */ public class O2OEShoppingCartDialogShowing { //实体购物车是否弹出发送事件 public boolean isShowing; }
[ "zq090428" ]
zq090428
da17f3706ceca3f966ba02eb47d3a30a3cf0c06f
e78c5f7e5e221855d779284b7a952be20fffbda1
/back/src/main/java/br/com/desafio/models/dtos/UsuarioDTO.java
b4f3f2f143156f38411878b27408e820e1cddd4e
[]
no_license
wac0013/desafio
4fa5358ef9b4bc76dffbf5fa6c96ef55316c3cc8
3d51dd90f609ad305dd5744279f46d55c9e2b40e
refs/heads/master
2022-12-01T19:43:19.419515
2020-08-20T04:12:38
2020-08-20T04:12:38
288,903,574
0
0
null
null
null
null
UTF-8
Java
false
false
719
java
package br.com.desafio.models.dtos; import java.io.Serializable; import br.com.desafio.models.documents.Usuario; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; @Data @AllArgsConstructor @NoArgsConstructor public class UsuarioDTO implements Serializable { private static final long serialVersionUID = 1L; private String id; private String nome; private String email; public Usuario toUsuario() { return Usuario.builder() .nome(nome) .email(email) .id(id) .build(); } public static UsuarioDTO fromUsuario(Usuario usuario) { if (usuario == null) return null; return new UsuarioDTO(usuario.getId(), usuario.getNome(), usuario.getEmail()); } }
[ "wac.0013@gmail.com" ]
wac.0013@gmail.com
4dba38d0f6a36219588a36786c4444783c6f83d4
0ecb003dee2e5b98890ea27574176669b4ce62b4
/src/test/java/org/jhipster/blog/web/rest/UserJWTControllerIntTest.java
e67298d3d7d6c74a70c12162f9e8910a3b6224b4
[]
no_license
khalidmunir/micro
1d68238242d7c43361c9266484012894d28f682e
a0477d3d99a83b23cc9e18f2342182f09d49ec4b
refs/heads/master
2021-06-29T16:38:08.068434
2018-10-13T17:43:25
2018-10-13T17:43:25
152,898,127
0
1
null
2020-09-18T09:26:49
2018-10-13T17:41:56
Java
UTF-8
Java
false
false
4,851
java
package org.jhipster.blog.web.rest; import org.jhipster.blog.BlogApp; import org.jhipster.blog.domain.User; import org.jhipster.blog.repository.UserRepository; import org.jhipster.blog.security.jwt.TokenProvider; import org.jhipster.blog.web.rest.vm.LoginVM; import org.jhipster.blog.web.rest.errors.ExceptionTranslator; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.security.authentication.AuthenticationManager; import org.springframework.security.crypto.password.PasswordEncoder; import org.springframework.test.context.junit4.SpringRunner; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.setup.MockMvcBuilders; import org.springframework.transaction.annotation.Transactional; import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.header; import static org.hamcrest.Matchers.nullValue; import static org.hamcrest.Matchers.isEmptyString; import static org.hamcrest.Matchers.not; /** * Test class for the UserJWTController REST controller. * * @see UserJWTController */ @RunWith(SpringRunner.class) @SpringBootTest(classes = BlogApp.class) public class UserJWTControllerIntTest { @Autowired private TokenProvider tokenProvider; @Autowired private AuthenticationManager authenticationManager; @Autowired private UserRepository userRepository; @Autowired private PasswordEncoder passwordEncoder; @Autowired private ExceptionTranslator exceptionTranslator; private MockMvc mockMvc; @Before public void setup() { UserJWTController userJWTController = new UserJWTController(tokenProvider, authenticationManager); this.mockMvc = MockMvcBuilders.standaloneSetup(userJWTController) .setControllerAdvice(exceptionTranslator) .build(); } @Test @Transactional public void testAuthorize() throws Exception { User user = new User(); user.setLogin("user-jwt-controller"); user.setEmail("user-jwt-controller@example.com"); user.setActivated(true); user.setPassword(passwordEncoder.encode("test")); userRepository.saveAndFlush(user); LoginVM login = new LoginVM(); login.setUsername("user-jwt-controller"); login.setPassword("test"); mockMvc.perform(post("/api/authenticate") .contentType(TestUtil.APPLICATION_JSON_UTF8) .content(TestUtil.convertObjectToJsonBytes(login))) .andExpect(status().isOk()) .andExpect(jsonPath("$.id_token").isString()) .andExpect(jsonPath("$.id_token").isNotEmpty()) .andExpect(header().string("Authorization", not(nullValue()))) .andExpect(header().string("Authorization", not(isEmptyString()))); } @Test @Transactional public void testAuthorizeWithRememberMe() throws Exception { User user = new User(); user.setLogin("user-jwt-controller-remember-me"); user.setEmail("user-jwt-controller-remember-me@example.com"); user.setActivated(true); user.setPassword(passwordEncoder.encode("test")); userRepository.saveAndFlush(user); LoginVM login = new LoginVM(); login.setUsername("user-jwt-controller-remember-me"); login.setPassword("test"); login.setRememberMe(true); mockMvc.perform(post("/api/authenticate") .contentType(TestUtil.APPLICATION_JSON_UTF8) .content(TestUtil.convertObjectToJsonBytes(login))) .andExpect(status().isOk()) .andExpect(jsonPath("$.id_token").isString()) .andExpect(jsonPath("$.id_token").isNotEmpty()) .andExpect(header().string("Authorization", not(nullValue()))) .andExpect(header().string("Authorization", not(isEmptyString()))); } @Test @Transactional public void testAuthorizeFails() throws Exception { LoginVM login = new LoginVM(); login.setUsername("wrong-user"); login.setPassword("wrong password"); mockMvc.perform(post("/api/authenticate") .contentType(TestUtil.APPLICATION_JSON_UTF8) .content(TestUtil.convertObjectToJsonBytes(login))) .andExpect(status().isUnauthorized()) .andExpect(jsonPath("$.id_token").doesNotExist()) .andExpect(header().doesNotExist("Authorization")); } }
[ "khalid_munir@icloud.com" ]
khalid_munir@icloud.com
b598d85bc5c5442a44bc960c0e6d4817a8d8844d
0f3d9ffd02db58641c7a66b4723c63da60533e89
/app/src/androidTest/java/com/android/esdudnik/animatedicons/ExampleInstrumentedTest.java
30c2d8c465045c1c994f238c927293a04ebeba94
[]
no_license
esdudnik/AnimatedIcons
9b22520cf19f5fa177fbe921566738f53b71a4eb
50abc369b5cdc26ee7e1283fcf7a17c8db4951f7
refs/heads/master
2021-01-11T23:31:28.468358
2017-01-11T02:34:47
2017-01-11T02:34:47
78,594,752
0
0
null
null
null
null
UTF-8
Java
false
false
772
java
package com.android.esdudnik.animatedicons; import android.content.Context; import android.support.test.InstrumentationRegistry; import android.support.test.runner.AndroidJUnit4; import org.junit.Test; import org.junit.runner.RunWith; import static org.junit.Assert.*; /** * Instrumentation 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() throws Exception { // Context of the app under test. Context appContext = InstrumentationRegistry.getTargetContext(); assertEquals("com.android.esdudnik.animatedicons", appContext.getPackageName()); } }
[ "EugeneD@Hexagontech.co.il" ]
EugeneD@Hexagontech.co.il
46c773e8a4749c67617c457412d3c61182fd4ca3
9c2a918d2c015627501d5695fbd9e4f45e5cf8b7
/pet-clinic-data/src/main/java/guru/springframework/petcliniccustomapp/service/CrudService.java
e0e6a7a8f21e7348368c4c2ed10b4514502be39a
[]
no_license
svnsairam/PetClincApp
d8350447a7ca7564d1ce6c543c53aa2b7740fdc2
8e793ba7ce1054e562c593b99ce68a0eb5fdbc0b
refs/heads/master
2022-11-16T03:55:02.193015
2020-07-19T16:27:13
2020-07-19T16:27:13
280,621,710
0
0
null
2020-07-19T16:27:15
2020-07-18T09:12:10
Java
UTF-8
Java
false
false
458
java
package guru.springframework.petcliniccustomapp.service; import java.util.Set; // Defining generic CrudService // OwnerService , PetService , VetService and just provide type and id type and can use those methods. // We are just trying to memic Spring CrudRepository<Type,ID> public interface CrudService<Type, ID> { Set<Type> findAll(); Type findById(ID id); Type save(Type object); void delete(Type object); void deleteById(ID id); }
[ "svnsairam.sakhamuri@gmail.com" ]
svnsairam.sakhamuri@gmail.com
3d6474b21d9def9d4bf8ce08ebd4f4dd885b7796
662da558826552109e802082c06ed950b42a53cd
/src_note/develop/others/java_src/Test.java
e4ab731cb1b26ede28e56861f601016283d92fab
[]
no_license
windygu/mybackup
ebb3b82e0928496fa4685a4259f79fc3541f9ebb
eee2cb6f9916bf409a68fdd2106903df1f2f02ab
refs/heads/master
2023-03-28T18:02:01.317278
2021-04-07T16:29:52
2021-04-07T16:29:52
null
0
0
null
null
null
null
UTF-8
Java
false
false
486
java
//Person.java class Person { protected String name; public void study(String name){ this.name=name; System.out.println(this.name+"姝e湪瀛︿範"); } } //Student.java class Student extends Person{ public void study(String name){ super.name=name; System.out.println("瀛︾敓"+super.name+"姝e湪瀛︿範"); } } //Test.java public class Test { public static void main(String[] args) { Person p = new Student(); p.study("鏉庣珛"); } }
[ "k_y_z_s@yeah.net" ]
k_y_z_s@yeah.net
249abd2230b3171621eef1277614e9a7f496f21c
f12898cf9c32e04c34d15266e049e601e40b7efd
/app/src/main/java/com/example/ishan/ftc_scouter/MainActivity.java
8660b8963636a9a85dccb0e173a77d174af149cd
[]
no_license
ishanqut/ftc__smart__team
b172c5c41d4942cd9aafd5811359208cd7e7cb95
811dd02feaccd08fc2b792c749aeaea81e83464d
refs/heads/master
2016-09-05T19:28:35.624233
2015-09-17T06:49:39
2015-09-17T06:49:39
41,908,933
1
0
null
null
null
null
UTF-8
Java
false
false
7,883
java
package com.example.ishan.ftc_scouter; import android.content.Intent; import android.database.Cursor; import android.database.sqlite.SQLiteDatabase; import android.net.Uri; import android.provider.MediaStore; import android.support.v7.app.ActionBarActivity; import android.os.Bundle; import android.util.Log; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.widget.Button; //TODO team checklist //TODO Push notifications about your games,award_judging!! //TODO the complete app for fTC /* * http://developer.android.com/training/basics/firstapp/starting-activity.html * http://www.androidbegin.com/tutorial/android-button-click-new-activity-example/ * * Android non-sense, Activity and stuff and the stupid Manifest file, the most useless piece of * rubbish that is around but will have to stick with it. Can't even start an activity without * specifying it in it. But I guess its useful for other stuff. * * */ /** * @author Ishan Joshi * @since 1.0 * @see ViewActivity * @see CustomizeActivity * @see AddActivity * <p> * This is the main class children!! * Android is not like C, its event driven and not serial * So you need to be aware of manifest. * This only has the start screen and event handlers for the * whole app. * References include * @link http://developer.android.com/training/basics/firstapp/starting-activity.html * @link http://www.androidbegin.com/tutorial/android-button-click-new-activity-example/ * @link http://developer.android.com/training/camera/photobasics.html * Camera intent.. * </p> */ public class MainActivity extends ActionBarActivity { SQLiteDatabase database; Button add,view,customize,donate; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); //TODO check documentation //TODO create documentation on how to //TODO set of predefined questions //deleteDatabase("scouter"); database = openOrCreateDatabase("scouter", MODE_PRIVATE, null); //Get the button object add = (Button)findViewById(R.id.btn_add); view = (Button) findViewById(R.id.btn_view); customize = (Button) findViewById(R.id.btn_customize); donate = (Button) findViewById(R.id.btn_donate); //Add event handlers. add.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { Intent intent = new Intent(MainActivity.this, AddActivity.class); startActivity(intent); // close this activity //finish(); } }); view.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { Intent intent = new Intent(MainActivity.this, ViewActivity.class); startActivity(intent); } }); customize.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { Intent intent = new Intent(MainActivity.this, CustomizeActivity.class); startActivity(intent); // database.execSQL("insert into `inputs` values (2,\"cb\",\"first_checkbox\",\"ischeked\",\"\",\"\",\"\");"); } }); donate.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://smtftc2k15.wix.com/smtrobotics")); startActivity(browserIntent); //finish(); //TODO intent for camera /*Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); if (takePictureIntent.resolveActivity(getPackageManager()) != null) { startActivityForResult(takePictureIntent, 1); }*/ /*Cursor c = database.rawQuery("SELECT * FROM student;", null); while (c.moveToFirst()) { Log.d("DBZ", c.getString(1)); Log.d("DBZ", c.getString(2)); } c.close();*/ } }); database.execSQL("CREATE TABLE IF NOT EXISTS `inputs` (\n" + "\t`id`\tINTEGER PRIMARY KEY AUTOINCREMENT,\n" + "\t`type`\tINTEGER,\n" + "\t`label`\tTEXT,\n" + "\t`arg1`\tTEXT,\n" + "\t`arg2`\tTEXT,\n" + "\t`arg3`\tTEXT,\n" + "\t`arg4`\tTEXT\n" + ");"); database.execSQL("CREATE TABLE IF NOT EXISTS `teamdata` (\n" + "\t`type`\tTEXT,\n" + "\t`label`\tTEXT,\n" + "\t`arg1`\tTEXT,\n" + "\t`arg2`\tTEXT,\n" + "\t`arg3`\tTEXT,\n" + "\t`arg4`\tTEXT,\n" + "\t`team_id`\tINTEGER\n" + ");"); //database.execSQL("drop table `teams`;"); database.execSQL("CREATE TABLE IF NOT EXISTS `teams` (\n" + "\t`id`\tINTEGER PRIMARY KEY ,\n" + "\t`name`\tTEXT,\n" + "\t`extra`\tTEXT\n" + ");"); //database.execSQL("INSERT INTO student VALUES('1aa','2aa','3aa');"); //database.execSQL("DROP TABLE student;"); /*database.execSQL("insert into `inputs`(type,label,arg1,arg2,arg3,arg4) values ('tb','textbox??','','','','');"); database.execSQL("insert into `inputs`(type,label,arg1,arg2,arg3,arg4) values ('rb','radiobutton??','1','2','3','');"); database.execSQL("insert into `inputs`(type,label,arg1,arg2,arg3,arg4) values ('cb','checkbox??','cb1','','','');");*/ } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.menu_main, menu); // getMenuInflater().inflate(R.menu.menu_add_new, menu); return true; } @Override public boolean onOptionsItemSelected(MenuItem item) { // Handle action bar item clicks here. The action bar will // automatically handle clicks on the Home/Up button, so long // as you specify a parent activity in AndroidManifest.xml. int id = item.getItemId(); //noinspection SimplifiableIfStatement if (id == R.id.action_settings) { return true; } if(id == R.id.clear_input) { database.execSQL("\n" + "INSERT INTO `inputs` (type,label,arg1,arg2,arg3,arg4) VALUES \n" + " ('rb','Parked','Rescue Beacon','Floor Goal','Touching Floor Mountain',''),\n" + " ('rb','Parked Hill','Low Zone','Mid Zone','High Zone',''),\n" + " ('cb','Rescue Beacon','Emitted','','',''),\n" + " ('cb','Shelter','Climber','','',''),\n" + " ('rb','Debris','Floor','Low','Mid/High',''),\n" + " ('rb','Parking','Low Zone','Mid Zone','High Zone',''),\n" + " ('rb','Zip Line','1','2','3',''),\n" + " ('cb','Shelter Climber','Yes','','',''),\n" + " ('rb','Pull up','Sometimes','Most','Always',''),\n" + " ('cb','All Clear','Yes definitely','','','');\n" + "\n"); return true; } return super.onOptionsItemSelected(item); } } /* * * CREATE TABLE `` ( `id` INTEGER PRIMARY KEY AUTOINCREMENT, `type` INTEGER, `label` TEXT, `arg1` TEXT, `arg2` TEXT, `arg3` TEXT, `arg4` TEXT ); * * */
[ "ishan.joshi@connect.qut.edu.au" ]
ishan.joshi@connect.qut.edu.au