Skip to content

Commit d2c665a

Browse files
committed
TestModule
1 parent 21f503b commit d2c665a

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

force-app/main/default/classes/test-module/TestModule.cls

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ public class TestModule {
2424
Mocker set(String field, Object value);
2525

2626
SObject build();
27+
List<SObject> build(Integer amount);
2728
}
2829

2930
public interface Template {
@@ -98,5 +99,9 @@ public class TestModule {
9899
public SObject preBuild() {
99100
return this.prototype;
100101
}
102+
103+
public List<SObject> build(Integer amount) {
104+
return new List<SObject>();
105+
}
101106
}
102107
}

0 commit comments

Comments
 (0)