diff options
author | Joey Sacchini <joey@sacchini.net> | 2020-09-29 17:05:58 -0400 |
---|---|---|
committer | Joey Sacchini <joey@sacchini.net> | 2020-09-29 17:05:58 -0400 |
commit | 56181da142f5e95a067feea5c4558fef2a2d49a7 (patch) | |
tree | 08d5bbcaaa13cf915248cf9dba2a0955d4b573cf /src/lib.rs | |
parent | 2e6119a65f260f460dd67860dd5f5af7286bcb42 (diff) | |
download | mcproto-rs-56181da142f5e95a067feea5c4558fef2a2d49a7.tar.gz mcproto-rs-56181da142f5e95a067feea5c4558fef2a2d49a7.tar.bz2 mcproto-rs-56181da142f5e95a067feea5c4558fef2a2d49a7.zip |
implement automated testing of all data-types
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -8,6 +8,7 @@ extern crate test; mod serialize; mod deserialize; pub mod utils; +#[macro_export] pub mod protocol; pub mod uuid; pub mod nbt; @@ -16,4 +17,8 @@ pub mod v1_15_2; pub mod status; pub use serialize::*; -pub use deserialize::*;
\ No newline at end of file +pub use deserialize::*; + +#[cfg(test)] +#[macro_export] +mod test_macros;
\ No newline at end of file |