File: empty_test_case.ads

package info (click to toggle)
libaunit 1.03-7
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 364 kB
  • sloc: ada: 1,552; makefile: 61; sh: 6
file content (20 lines) | stat: -rw-r--r-- 499 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
with Ada.Strings.Unbounded;
use Ada.Strings.Unbounded;

with  AUnit.Test_Cases;

-- Test case with no routines.
package Empty_Test_Case is
   type Test_Case is new AUnit.Test_Cases.Test_Case with private;

   --  Register routines to be run:
   procedure Register_Tests (T : in out Test_Case);

   --  Provide name identifying the test case:
   function Name (T : Test_Case) return String_Access;

private

   type Test_Case is new AUnit.Test_Cases.Test_Case with null record;

end Empty_Test_Case;