TestTPRealloc.h
上传用户:xfwatch
上传日期:2020-12-14
资源大小:872k
文件大小:3k
源码类别:

中间件编程

开发平台:

Java

  1. /*
  2.  * JBoss, Home of Professional Open Source
  3.  * Copyright 2008, Red Hat, Inc., and others contributors as indicated
  4.  * by the @authors tag. All rights reserved.
  5.  * See the copyright.txt in the distribution for a
  6.  * full listing of individual contributors.
  7.  * This copyrighted material is made available to anyone wishing to use,
  8.  * modify, copy, or redistribute it subject to the terms and conditions
  9.  * of the GNU Lesser General Public License, v. 2.1.
  10.  * This program is distributed in the hope that it will be useful, but WITHOUT A
  11.  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  12.  * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
  13.  * You should have received a copy of the GNU Lesser General Public License,
  14.  * v.2.1 along with this distribution; if not, write to the Free Software
  15.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  16.  * MA  02110-1301, USA.
  17.  */
  18. #ifndef TestTPRealloc_H
  19. #define TestTPRealloc_H
  20. #include <cppunit/extensions/HelperMacros.h>
  21. #include <cppunit/TestFixture.h>
  22. #include "BaseTest.h"
  23. class TestTPRealloc: public BaseTest {
  24. CPPUNIT_TEST_SUITE( TestTPRealloc);
  25. CPPUNIT_TEST( test_tprealloc_negative_x_octet);
  26. // THIS DOES NOT WORK AS YOU CANNOT REALLOC A ZERO BUFFER AS IT CANT BE FOUND
  27. //CPPUNIT_TEST( test_tprealloc_zero_x_octet);
  28. CPPUNIT_TEST( test_tprealloc_larger_x_octet);
  29. CPPUNIT_TEST( test_tprealloc_smaller_x_octet);
  30. CPPUNIT_TEST( test_tprealloc_samesize_x_octet);
  31. CPPUNIT_TEST( test_tprealloc_multi_x_octet);
  32. CPPUNIT_TEST( test_tprealloc_negative_x_common);
  33. CPPUNIT_TEST( test_tprealloc_zero_x_common);
  34. CPPUNIT_TEST( test_tprealloc_larger_x_common);
  35. CPPUNIT_TEST( test_tprealloc_smaller_x_common);
  36. CPPUNIT_TEST( test_tprealloc_samesize_x_common);
  37. CPPUNIT_TEST( test_tprealloc_multi_x_common);
  38. CPPUNIT_TEST( test_tprealloc_negative_x_c_type);
  39. CPPUNIT_TEST( test_tprealloc_zero_x_c_type);
  40. CPPUNIT_TEST( test_tprealloc_larger_x_c_type);
  41. CPPUNIT_TEST( test_tprealloc_smaller_x_c_type);
  42. CPPUNIT_TEST( test_tprealloc_samesize_x_c_type);
  43. CPPUNIT_TEST( test_tprealloc_multi_x_c_type);
  44. CPPUNIT_TEST( test_tprealloc_nonbuffer);
  45. CPPUNIT_TEST( test_tprealloc_null);
  46. CPPUNIT_TEST_SUITE_END();
  47. public:
  48. void test_tprealloc_negative_x_octet();
  49. void test_tprealloc_zero_x_octet();
  50. void test_tprealloc_larger_x_octet();
  51. void test_tprealloc_smaller_x_octet();
  52. void test_tprealloc_samesize_x_octet();
  53. void test_tprealloc_multi_x_octet();
  54. void test_tprealloc_negative_x_common();
  55. void test_tprealloc_zero_x_common();
  56. void test_tprealloc_larger_x_common();
  57. void test_tprealloc_smaller_x_common();
  58. void test_tprealloc_samesize_x_common();
  59. void test_tprealloc_multi_x_common();
  60. void test_tprealloc_negative_x_c_type();
  61. void test_tprealloc_zero_x_c_type();
  62. void test_tprealloc_larger_x_c_type();
  63. void test_tprealloc_smaller_x_c_type();
  64. void test_tprealloc_samesize_x_c_type();
  65. void test_tprealloc_multi_x_c_type();
  66. void test_tprealloc_nonbuffer();
  67. void test_tprealloc_null();
  68. virtual void setUp();
  69. virtual void tearDown();
  70. private:
  71. char* m_allocated;
  72. char* m_nonallocated;
  73. };
  74. #endif