Move core integration tests into library module

This commit is contained in:
Dirkjan Ochtman
2018-09-05 20:53:15 +02:00
parent 5a98c1fa8e
commit 6149d76ec7
2 changed files with 3 additions and 15 deletions
+2
View File
@@ -28,6 +28,8 @@ mod hkdf;
mod memory_stream;
mod range_set;
mod stream;
#[cfg(test)]
mod tests;
mod transport_parameters;
mod varint;
+1 -15
View File
@@ -1,17 +1,3 @@
extern crate openssl;
extern crate quicr_core as quicr;
extern crate rand;
#[macro_use]
extern crate slog;
#[macro_use]
extern crate assert_matches;
#[macro_use]
extern crate lazy_static;
extern crate bytes;
#[macro_use]
extern crate hex_literal;
extern crate byteorder;
use std::collections::VecDeque;
use std::io::{self, Write};
use std::net::SocketAddrV6;
@@ -24,7 +10,7 @@ use openssl::rsa::Rsa;
use openssl::x509::X509;
use slog::{Drain, Logger, KV};
use quicr::*;
use super::*;
struct TestDrain;