From bad0b6551cfcb83696968bc7a160630c3240459b Mon Sep 17 00:00:00 2001 From: Nikos Ftylitakis Date: Fri, 20 Dec 2019 13:06:59 +0200 Subject: [PATCH] Added information in README for the updated method of using the test resources for unit testing. This should held on #149 --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ea5e724..0a07d45 100644 --- a/README.md +++ b/README.md @@ -37,6 +37,7 @@ Supports barcode decoding for the following types: 1. [C++/Qt](#howToEncodingCPP) 1. [Qt Quick](#howToEncodingQtQuick) 1. [Encoded text format Information](#howToEncodingFormatExamples) +1. [Unit test dependency](#unitTestDependency) 1. [Contact](#contact) @@ -237,6 +238,15 @@ Image{ Here is a list of contents that have been encoded and tested to be recognizable by the Android ZXing decoding application: [QR Code encoding wiki page](https://github.com/ftylitak/qzxing/wiki/QR-Code-encoding) + +# Unit test dependency +In order to run Unit tests in /test folder, the git submodule containing the test resoucres needs to be initialized and/or updated: + +```bash +cd qzxing +git submodule update --init --recursive +``` + # Contact -In case of bug reports or feature requests feel free to open an [issue](https://github.com/ftylitak/qzxing/issues). +In case of bug reports or feature requests feel free to open an [issue](https://github.com/ftylitak/qzxing/issues).