{"id":48918949,"url":"https://github.com/pyjarrett/trendy_test","last_synced_at":"2026-04-17T04:07:15.752Z","repository":{"id":43220303,"uuid":"385011708","full_name":"pyjarrett/trendy_test","owner":"pyjarrett","description":"Ada Unit Testing Library","archived":false,"fork":false,"pushed_at":"2025-08-03T21:56:20.000Z","size":131,"stargazers_count":10,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-08-03T23:36:31.397Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Ada","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pyjarrett.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2021-07-11T17:27:50.000Z","updated_at":"2025-08-03T21:56:24.000Z","dependencies_parsed_at":"2025-07-04T16:23:05.827Z","dependency_job_id":"d2a05775-1649-4585-8e79-61441b3a5aeb","html_url":"https://github.com/pyjarrett/trendy_test","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pyjarrett/trendy_test","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyjarrett%2Ftrendy_test","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyjarrett%2Ftrendy_test/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyjarrett%2Ftrendy_test/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyjarrett%2Ftrendy_test/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pyjarrett","download_url":"https://codeload.github.com/pyjarrett/trendy_test/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyjarrett%2Ftrendy_test/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31914486,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T18:22:33.417Z","status":"online","status_checked_at":"2026-04-17T02:00:06.879Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-04-17T04:07:12.465Z","updated_at":"2026-04-17T04:07:15.745Z","avatar_url":"https://github.com/pyjarrett.png","language":"Ada","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# trendy_test\n\nMinimum Effort Ada Unit Testing Library\n\n[![Build Status](https://github.com/pyjarrett/trendy_test/actions/workflows/build.yml/badge.svg)](https://github.com/pyjarrett/trendy_test/actions)\n\n## Features\n\n- Minimum setup\n- Parallelization of tests\n- Randomization of test order to find dependencies between tests\n- No generated code or scripts needed\n- [JUnit XML reports and GitLab integration](docs/gitlab.md)\n\n## Example\n\n```ada\nwith Ada.Text_IO;\n\nwith Trendy_Test.Assertions.Integer_Assertions;\nwith Trendy_Test.Reports;\n\nwith My_Tests;\n\nuse Trendy_Test.Assertions;\nuse Trendy_Test.Assertions.Integer_Assertions;\n\nprocedure My_Test_Main is\nbegin\n    Trendy_Test.Register (My_Tests.All_Tests);\n    Trendy_Test.Reports.Print_Basic_Report(Trendy_Test.Run);\nend My_Test_Main;\n\n----------------------------------------------------------------\n\nwith Trendy_Test;\npackage My_Tests is\n    function All_Tests return Trendy_Test.Test_Group;\nend My_Tests;\n\n----------------------------------------------------------------\n\npackage body My_Tests is\n    procedure Test_Sample (T : in out Trendy_Test.Operation'Class) is\n    begin\n        -- Don't put anything above here you don't want run during listing/other ops.\n        T.Register;\n        Assert (T, Some_Expression);\n    end Test_Sample;\n\n    procedure Test_Is_Disabled (T : in out Trendy_Test.Operation'Class) is\n    begin\n        T.Register(Disabled =\u003e True);  -- Disabled, don't run this test.\n        Assert (T, Some_Expression);\n    end Test_Is_Disabled;\n\n    procedure Test_Is_Not_Run_In_Parallel (T : in out Trendy_Test.Operation'Class) is\n    begin\n        T.Register(Parallelize =\u003e False);  -- There's some dependency, so don't run it in parallel.\n        Assert (T, Some_Expression);\n    end Test_Is_Not_Run_In_Parallel;\n\n    function All_Tests return Trendy_Test.Test_Group is\n    begin\n        return\n            (Test_Sample'Access,\n             Test_Is_Disabled'Access\n            );\n    end All_Tests;\nend My_Tests;\n```\n\n## Example Output\n\n```\nD:\\dev\\ada\\trendy_command_line\\bin\\trendy_command_line_test_main\n[ PASS ] shared_pointers_tests.test_multiple_oracles                            0.000105300\n[ PASS ] shared_pointers_tests.test_single_oracle                               0.000052700\n[ PASS ] trendy_command_line.context_free.tests.test_is_long_option             0.000002300\n[ PASS ] trendy_command_line.context_free.tests.test_is_option_terminator       0.000007200\n[ PASS ] trendy_command_line.context_free.tests.test_is_short_option            0.000005000\n[ PASS ] trendy_command_line.context_free.tests.test_is_short_option_or_group   0.000009200\n[ PASS ] trendy_command_line_tests.flags.test_boolean_option_defaults           0.000149400\n[ FAIL ] trendy_command_line_tests.flags.test_boolean_option_short_option_group 0.000185600\n         Assertion Failed: (Condition false) at D:\\dev\\ada\\trendy_command_line\\src\\trendy_command_line_tests-flags.adb: 110[D:\\dev\\ada\\trendy_command_line\\bin\\trendy_command_line_test_main.exe]\n0x453530 Trendy_Test.Report_Failure at trendy_test.adb:88\n0x4535a4 Trendy_Test.Assert at trendy_test.adb:102\n0x425338 Trendy_Command_Line_Tests.Flags.Test_Boolean_Option_Short_Option_Group at trendy_command_line_tests-flags.adb:110\n0x451ff1 Trendy_Test.Run_Test at trendy_test.adb:237\n0x452d4c Trendy_Test.Run.Parallel_Test_TaskTB at trendy_test.adb:277\n0x4601a2 system__tasking__queuing__select_protected_entry_call at ???\n[C:\\Windows\\System32\\KERNEL32.DLL]\n0x7ffd7d1f7032\n[C:\\Windows\\SYSTEM32\\ntdll.dll]\n0x7ffd7e08264f\n\n[ FAIL ] trendy_command_line_tests.flags.test_boolean_option_short_options      0.001984800\n         Assertion Failed: (Condition false) at D:\\dev\\ada\\trendy_command_line\\src\\trendy_command_line_tests-flags.adb: 93[D:\\dev\\ada\\trendy_command_line\\bin\\trendy_command_line_test_main.exe]\n0x453530 Trendy_Test.Report_Failure at trendy_test.adb:88\n0x4535a4 Trendy_Test.Assert at trendy_test.adb:102\n0x425a43 Trendy_Command_Line_Tests.Flags.Test_Boolean_Option_Short_Options at trendy_command_line_tests-flags.adb:93\n0x451ff1 Trendy_Test.Run_Test at trendy_test.adb:237\n0x452d4c Trendy_Test.Run.Parallel_Test_TaskTB at trendy_test.adb:277\n0x4601a2 system__tasking__queuing__select_protected_entry_call at ???\n[C:\\Windows\\System32\\KERNEL32.DLL]\n0x7ffd7d1f7032\n[C:\\Windows\\SYSTEM32\\ntdll.dll]\n0x7ffd7e08264f\n\n[ PASS ] trendy_command_line_tests.flags.test_boolean_option_toggles            0.000153600\n[ PASS ] trendy_command_line_tests.flags.test_boolean_option_too_many_occurrences\n                                                                                0.003517400\n[ PASS ] trendy_command_line_tests.test_long_option_with_argument               0.000013000\n[ PASS ] trendy_command_line_tests.test_one_operand                             0.000006700\n[ PASS ] trendy_command_line_tests.test_short_option_with_argument              0.000193600\nResults: Passed:  12 /  14\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpyjarrett%2Ftrendy_test","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpyjarrett%2Ftrendy_test","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpyjarrett%2Ftrendy_test/lists"}