I wish to check if the resourceTypeName is ClearingPalette and respective actionType and resourceTypeDescription matches the same data. The permissionsids keeps changing.
Please remember to make the test fail by changing the assertions to ensure that you are not getting a false positive. (For example, change CREATE to Create).
You might want to consider splitting the tests like following.
This way, you get feedback on all three tests. In the first example. If the actionType assertion fails, then the test will fail immediately and you won’t get feedback on the final assertion. You might have an issue with the description and not know about it until you fix the actionType test. Which is why its sometimes useful to split the tests so you get feedback on all of the assertions.