Suraj Pillai
Suraj Pillai
@bottomlinebrokers The action should be handling commas within columns as long as you enclose the column in double quotes. you need not change the delimiter. You can see this [here](https://github.com/alexed1/LightningFlowComponents/blob/379a2f6efb4842e1b1c149548b3f08a3b464f360/flow_action_components/ConvertCSVToRecords/force-app/main/default/classes/ConvertCSVToRecordsTest.cls#L118)...
@bottomlinebrokers I just reviewed the code and looks like what I had originally submitted did not make it correctly into the final version published by USF. @alexed1 The issue reported...
I just ran the tests and those passed. I will investigate some more and report what I find. @bottomlinebrokers can you confirm you are running the latest version of the...
@alexed1 Looks like I did not have enough asserts in the test to check the output after parsing. @bottomlinebrokers I have submitted a fix for this (and some other issues...
@bottomlinebrokers I have submitted a fix for the issue as noted in my previous comment..feel free to grab the files in my fix if you know how, to resolve the...
> I think it's tough because if they don't call this `validateAllMocks` method, the developer is in the same boat as before - the test passes and there's no way...
> Run into the same problem of, have to call the static method. But it's a start and better than nothing. Once we have a bit of a more finalized...
> UniversalMocker.validateAllMocks(); ```java @IsTest private static it_should_test() { //... mock.assertThat().method(mockedMethodName).wasCalled(1, UniversalMocker.Times.EXACTLY); //... UniversalMocker.validateAllMocks(); } ``` The `validateAllMocks` call will be at the end of the test method.
> Won't the test fail in the `.assertThat()` call before the `validateAllMocks()` call is made? The test will fail if the method was not called 1 time. The `validateAllMocks()` call...
> What if in order to execute the developer is required to execute a .run() method? > > If all chains must end with a single method call, you have...