Tests¶
The tests should all just run and work as part of the build process. You can of course also run them in Visual Studio.
Create SSL Cert for Testing¶
You can do this via OpenSSL:
Install openssl package (if you are using Windows, download binaries here).
Generate private key:
openssl genrsa 2048 > private.pemGenerate the self-signed certificate:
openssl req -x509 -days 1000 -new -key private.pem -out public.pemIf needed, create PFX:
openssl pkcs12 -export -in public.pem -inkey private.pem -out mycert.pfx