From 09271a91158e7939dcfda691c7f7dd299617e512 Mon Sep 17 00:00:00 2001 From: Tobias Blum Date: Wed, 15 Apr 2020 22:46:41 +0200 Subject: [PATCH] Remove output of token. --- src/main.cpp | 4 ++-- test/README | 11 +++++++++++ 2 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 test/README diff --git a/src/main.cpp b/src/main.cpp index eb95d8c..9898996 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -378,8 +378,8 @@ boolean refreshToken() { } DBG_PRINTLN(F("refreshToken() - Success")); - DBG_PRINTLN(access_token); - DBG_PRINTLN(id_token); + // DBG_PRINTLN(access_token); + // DBG_PRINTLN(id_token); state = SMODEPOLLPRESENCE; } else { DBG_PRINTLN(F("refreshToken() - Error:")); diff --git a/test/README b/test/README new file mode 100644 index 0000000..df5066e --- /dev/null +++ b/test/README @@ -0,0 +1,11 @@ + +This directory is intended for PIO Unit Testing and project tests. + +Unit Testing is a software testing method by which individual units of +source code, sets of one or more MCU program modules together with associated +control data, usage procedures, and operating procedures, are tested to +determine whether they are fit for use. Unit testing finds problems early +in the development cycle. + +More information about PIO Unit Testing: +- https://docs.platformio.org/page/plus/unit-testing.html