Skip to content

Commit

Permalink
Update DummyClassTest.cls
Browse files Browse the repository at this point in the history
  • Loading branch information
fschiozerSFDC authored May 22, 2024
1 parent 2e583cc commit f3e7b34
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions force-app/main/default/classes/DummyClassTest.cls
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,10 @@ private class DummyClassTest {
static void myUnitTest() {
// TO DO: implement unit test

DummyClass dc = new DummyClass();

String a = dc.getStatic();
String a = DummyClass.getStatic();

System.Assert(a == 'Analiza o código', 'Test failed !!!');


}
}
}

0 comments on commit f3e7b34

Please sign in to comment.