Skip to content

Instantly share code, notes, and snippets.

View collinsauve's full-sized avatar
💻

Collin Sauve collinsauve

💻
View GitHub Profile
List<JsonNode> fieldNodes = FindingJsonHelper.getFields(finding, fieldKey);
if (fieldNodes.stream().noneMatch(fieldNode -> conditions.stream().allMatch(c -> c.evaluate(fieldNode)))) {
return false;
}
@FunctionalInterface
public interface Assertion<TArg1, TArg2, TArg3> {
void Execute(TArg1 arg1, TArg2 arg2, TArg3 arg3);
}
public static Assertion<RestContextBase, RestRequest, RestResponse> CreatedWithJsonBody() {
return (RestContextBase context, RestRequest y, RestResponse z) -> {
# duplicated to https://gist.github.com/awr/a5136e574556ed50ce94 for public access
# START http://boxstarter.org/package/url?https://gist.githubusercontent.com/awr/a5136e574556ed50ce94/raw/dev-boxstarter.ps1
# chocolatey initial setup
choco feature enable -n=allowGlobalConfirmation -y
choco feature enable -n=autoUninstaller -y
# Windows setup
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions -EnableShowFullPathInTitleBar
Disable-InternetExplorerESC