blob: 7cdd45f18a1445ddfd325aa256dfcebabd89037e [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package codegen
const testBaseTemplate = `
{{- define "TestBase" -}}
// WARNING: This file is machine generated by fidlgen.
#pragma once
{{ range .Headers -}}
#include <{{ . }}>
{{ end -}}
{{- range .Library }}
namespace {{ . }} {
{{- end }}
namespace testing {
{{ "" }}
{{- range .Decls }}
{{- if Eq .Kind Kinds.Interface }}{{ template "ProtocolTestBase" . }}{{- end }}
{{- end -}}
} // namespace testing
{{- range .LibraryReversed }}
} // namespace {{ . }}
{{- end }}
{{ end }}
`