void conformanceCloudEvent()

in integration_test/lib/src/conformance_handlers.dart [42:54]


void conformanceCloudEvent(CloudEvent event) {
  final eventEncoded = encodeJsonPretty(event);
  File('function_output.json').writeAsStringSync(
    eventEncoded,
  );

  final buffer = StringBuffer()
    ..writeln('Hello, conformance test!')
    ..writeln('EVENT')
    ..writeln(eventEncoded);

  print(buffer.toString());
}