Created
October 3, 2023 06:09
-
-
Save FishOfPrey/2c29e693f38a8aec5df30b009513178e to your computer and use it in GitHub Desktop.
System Assert Class shadowing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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