Skip to content

Instantly share code, notes, and snippets.

@pyao-bwc
Created March 15, 2021 20:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pyao-bwc/95e5f7919be382226ad29793b39a294b to your computer and use it in GitHub Desktop.
Save pyao-bwc/95e5f7919be382226ad29793b39a294b to your computer and use it in GitHub Desktop.
Finalizer Deployment issue
@isTest
public class Test {
@isTest
public static void test1() {
String dummyString = '';
Integer max = 100000;
for (Integer i = 0; i < max; i++) {
Integer rand = Math.round(Math.random() * 1000);
dummyString = dummyString + String.valueOf(rand);
}
}
@isTest
public static void test2() {
String dummyString = '';
Integer max = 100000;
for (Integer i = 0; i < max; i++) {
Integer rand = Math.round(Math.random() * 1000);
dummyString = dummyString + String.valueOf(rand);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment