Branch data Line data Source code
1 : : // ***************************************************************************** 2 : : /*! 3 : : \file src/RNGTest/TestStack.hpp 4 : : \copyright 2012-2015 J. Bakosi, 5 : : 2016-2018 Los Alamos National Security, LLC., 6 : : 2019-2021 Triad National Security, LLC. 7 : : All rights reserved. See the LICENSE file for details. 8 : : \brief Stack collecting all types of random number generator statistical 9 : : tests 10 : : \details Stack collecting all types of statistical tests. Currently, on 11 : : TestU01 is interfaced. More might in the future. 12 : : */ 13 : : // ***************************************************************************** 14 : : #ifndef TestStack_h 15 : : #define TestStack_h 16 : : 17 : : #include "TestU01Stack.hpp" 18 : : 19 : : namespace rngtest { 20 : : 21 : : //! Stack collecting all types of random RNG statistical tests 22 : : struct TestStack { 23 : 32 : TestStack() : TestU01() {} 24 : : TestU01Stack TestU01; 25 : : }; 26 : : 27 : : } // rngtest:: 28 : : 29 : : #endif // TestStack_h