Check the case with invalid token

This commit is contained in:
2022-09-01 17:05:13 +02:00
parent 43a6d2c3a2
commit 62fa71ea6e
5 changed files with 84 additions and 15 deletions

View File

@ -2,6 +2,7 @@
enum PortsAllocation {
DummyTCPServer,
ValidWithTokenAuth,
InvalidWithTokenAuth,
}
fn get_port_number(alloc: PortsAllocation, index: u16) -> u16 {
@ -12,4 +13,5 @@ const LOCALHOST: &str = "127.0.0.1";
mod dummy_tcp_sockets;
mod invalid_with_token_auth;
mod valid_with_token_auth;