Skip to content

Instantly share code, notes, and snippets.

@FishOfPrey
Created October 3, 2023 06:09
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 FishOfPrey/2c29e693f38a8aec5df30b009513178e to your computer and use it in GitHub Desktop.
Save FishOfPrey/2c29e693f38a8aec5df30b009513178e to your computer and use it in GitHub Desktop.
System Assert Class shadowing
public class Assert {
public static void areEqual(Object expected, Object actual, string msg) {
System.debug('Assert Shadowing Test');
System.Assert.areEqual(expected, actual, msg);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment