Ejemplo n.º 1
0
Archivo: 6.cpp Proyecto: dasima/Books
int main(int argc, const char *argv[])
{
    // test
    testNormal();
    testLeftOnly();
    testRightOnly();
    testOneOnly();
    testCompleteBinaryTree();
    testNULL();
    testNotComparable();
    
    return 0;
}
Ejemplo n.º 2
0
int main(int argc, char ** argv)
{
  testBernoulli();
  testCauchy();
  testExponential();
  testGeometric();			       
  testInitialSeed();
  testLogNormal();
  testManualSeed();
  testNormal();
  testRandom();
  testSeed();
  testUniform();

  UnitTest_report();

}