df

Dependencies:   mbed

Fork of APP1 by Team APP

TestUtility.hpp

Committer:
GaiSensei
Date:
2017-02-09
Revision:
23:2531e72d92b9
Parent:
21:a111be2582be

File content as of revision 23:2531e72d92b9:

/////////////////////////////////////////////////////////////
// APP 1: Systèmes à microprocesseurs                      //
//                                                         //
// Université de Sherbrooke                                //
// Génie informatique                                      //
// Session 5, Hiver 2017                                   //
//                                                         //
// Date:    17 janvier 2017                                //
//                                                         //
// Auteurs: Maxime Dupuis,       dupm2216                  //
//          Bruno Allaire-Lemay, allb2701                  //
/////////////////////////////////////////////////////////////

#ifndef TEST_UTILITY_HPP
#define TEST_UTILITY_HPP

namespace utility
{
    void run_all_tests();
    void test_is_almost_equal();
    void test_wrap_angle();
    void test_degree_from_radian();
    void test_update_bit();
    void test_update_bit_for_values_greater_than_one_byte();
    void test_update_bits();
    void test_moving_average_filter();
}

#endif