dpapi-0.1.0.0: test/Main.hs
{-
- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at https://mozilla.org/MPL/2.0/.
-}
module Main (main) where
import Test.HUnit (Counts, Test (TestList), runTestTT)
import Test.System.Win32.Dpapi (dpapiTests)
import Test.System.Win32.Dpapi.Internal (blobTests)
main :: IO Counts
main = runTestTT $ TestList [dpapiTests, blobTests]