@eagleoutice/flowr - v2.10.9
    Preparing search index...
    SOFTWARE_HAS_TESTS: {
        createSearch: (
            config: SoftwareHasTestsConfig,
        ) => FlowrSearchBuilder<
            "from-query",
            [],
            ParentInformation,
            FlowrSearchElements<
                ParentInformation,
                FlowrSearchElement<ParentInformation>[],
            >,
        >;
        info: {
            certainty: BestEffort;
            defaultConfig: { additionalTestFunctions: readonly [] };
            description: "Checks whether the software project has tests (test files in a test directory or test function calls in R code).";
            name: "Software Has Tests";
            tags: readonly [Usability, Reproducibility];
        };
        prettyPrint: {
            full: (result: SoftwareHasTestsResult) => string;
            query: (result: SoftwareHasTestsResult) => string;
        };
        processSearchResult: (
            elements: FlowrSearchElements<
                ParentInformation,
                FlowrSearchElement<ParentInformation>[],
            >,
            _config: SoftwareHasTestsConfig,
            data: ReadonlyFlowrAnalysisProvider<KnownParser>,
        ) => {
            ".meta": { testCallsFound: number; testFilesFound: number };
            results: SoftwareHasTestsResult[];
        };
    } = ...

    Type Declaration