Skip to content

Commit 5e848ac

Browse files
change for rebuild
1 parent 8dd4884 commit 5e848ac

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

src/platform-utility/CustomMetadataDAO/main/classes/CustomMetadataDAO.cls

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,9 @@ public inherited sharing class CustomMetadataDAO {
6262

6363
return customMetadataRecordsMap.get(query);
6464
}
65+
66+
@TestVisible
67+
private static String nothing() {
68+
return 'Nothing.';
69+
}
6570
}

src/platform-utility/CustomMetadataDAO/test/classes/CustomMetadataDAOTest.cls

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,9 @@ public class CustomMetadataDAOTest {
100100
public static void setMetadata(String query, List<SObject> records) {
101101
CustomMetadataDAO.customMetadataRecordsMap.put(query, records);
102102
}
103+
104+
@IsTest
105+
private static void testNothing() {
106+
Assert.areEqual('Nothing!', CustomMetadataDAO.nothing());
107+
}
103108
}

0 commit comments

Comments
 (0)