File: square-tests.adb

package info (click to toggle)
libaunit 18-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,100 kB
  • sloc: ada: 5,325; makefile: 152; sh: 94; xml: 13
file content (33 lines) | stat: -rw-r--r-- 748 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
--
--  Copyright (C) 2008, AdaCore
--
with AUnit.Assertions;   use AUnit.Assertions;

package body Square.Tests is

   -----------------
   -- Set_Up_Case --
   -----------------

   Local_Square : aliased Square_Type;

   procedure Set_Up (T : in out Test) is
   begin
      T.The_Shape := Local_Square'Access;
   end Set_Up;

   -------------------
   -- Test_Get_Area --
   -------------------

   procedure Test_Get_Area (T : in out Test) is
   begin
      T.The_Shape.Set_Width (3);
      Assert (T.The_Shape.Area = 9,
              "Wrong area returned for object square");
      T.The_Shape.Set_Height (5);
      Assert (T.The_Shape.Area = 25,
              "Wrong area returned for object square");
   end Test_Get_Area;

end Square.Tests;