Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.2 KiB
27 lines
1.2 KiB
// Protocol Buffers - Google's data interchange format |
|
// Copyright 2023 Google LLC. All rights reserved. |
|
// |
|
// Use of this source code is governed by a BSD-style |
|
// license that can be found in the LICENSE file or at |
|
// https://developers.google.com/open-source/licenses/bsd |
|
|
|
/// Tests covering proto packages. |
|
|
|
#[test] |
|
fn test_packages() { |
|
// empty package, message declared in the first .proto source |
|
let _foo: no_package_proto::MsgWithoutPackage; |
|
// empty package, message declared in other .proto source |
|
let _foo: no_package_proto::OtherMsgWithoutPackage; |
|
// empty package, import public of a message |
|
let _foo: no_package_proto::ImportedMsgWithoutPackage; |
|
|
|
// package, message declared in the first .proto source |
|
let _foo: package_proto::testing_packages::MsgWithPackage; |
|
// package, message declared in the other .proto source with the same package |
|
let _foo: package_proto::testing_packages::OtherMsgWithPackage; |
|
// package, message declared in the other .proto source with a different package |
|
let _foo: package_proto::testing_other_packages::OtherMsgInDifferentPackage; |
|
// package, import public of a message |
|
let _foo: package_proto::testing_packages::ImportedMsgWithPackage; |
|
}
|
|
|