Federal Contractor

RELIANCE TEST & TECHNOLOGY, LLC Federal Contract Obligations (Last 10 Years)

RELIANCE TEST & TECHNOLOGY, LLC (CAGE 7FL60, UEI LFMMBZEMM2X3) has received 542 federal award actions totaling $1.55 billion over the last 10 years.

Federal procurement records show RELIANCE TEST & TECHNOLOGY, LLC concentrated in engineering services, with 541 of 542 actions under NAICS 541330 and nearly all dollars obligated by the Department of the Air Force. The company also recorded additional awards from the Department of the Navy and a single $500 action tied to the Missile Defense Agency.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals and trends reflect FPDS award action data for the last 10 years and may include modifications as well as initial awards.

CAGE Code
7FL60
UEI
LFMMBZEMM2X3
Total Obligated
1.55 billion
1,552,109,430.99
Award Actions
542
Average Action Value
2,863,670.53

About RELIANCE TEST & TECHNOLOGY, LLC federal contract activity

RELIANCE TEST & TECHNOLOGY, LLC (CAGE 7FL60, UEI LFMMBZEMM2X3) recorded 542 awards with total obligations of 1.55 billion over the last 10 years, for an average award value of 2.86 million. The obligation profile is heavily concentrated, with nearly all activity tied to a single dominant service line and a small number of federal customers.

Agency mix and customer concentration

The DEPT OF THE AIR FORCE is the primary customer by a wide margin, accounting for 1.26 billion across 468 awards. The DEPT OF THE NAVY is the second-largest buyer at 294.25 million across 73 awards, while the MISSILE DEFENSE AGENCY appears only once with a nominal obligation of 500.

Industry profile based on NAICS activity

Contract activity is overwhelmingly concentrated in NAICS 541330, Engineering Services, which represents 1.55 billion across 541 awards. A single additional award is attributed to NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences, with 500 obligated.

Annual contract trend over the analysis window

Obligations have remained in the 160 million to 213 million range in each year shown from 2021 through 2025, indicating sustained year-over-year funding rather than a single surge. The highest annual obligation in the provided period is 2023 at 213.36 million, followed by 2025 at 203.36 million and 2024 at 194.94 million.

How to interpret this page

This summary uses FPDS award records for RELIANCE TEST & TECHNOLOGY, LLC within the last 10 years and aggregates obligation amounts, award counts, and coded agency and NAICS classifications. Annual figures reflect obligations reported for each fiscal year shown, and category totals are interpreted directly from the provided FPDS rollups without additional estimation.

Top Agencies

SELECT
    agency_id,
    agency_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
        anyHeavy(content__award__purchaserInformation__contractingOfficeAgencyID__name) AS agency_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '7FL60'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY agency_id
)
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Award Actions
5700 DEPT OF THE AIR FORCE 1,257,859,813.46 1.26 billion 468
1700 DEPT OF THE NAVY 294,249,117.53 294.25 million 73
97JC MISSILE DEFENSE AGENCY (MDA) 500.00 500.00 1

Insight

Over the last 10 years, RELIANCE TEST & TECHNOLOGY, LLC has obligated $1.55 billion across 542 awards, with a clear concentration in two agencies. The Department of the Air Force accounts for $1.26 billion and 468 awards, representing the dominant share of activity, while the Department of the Navy contributes $294.25 million across 73 awards. Missile Defense Agency obligations are negligible at $500 on 1 award, indicating highly limited diversification beyond the Air Force and Navy.

Top NAICS

SELECT
    naics_code,
    naics_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
        anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '7FL60'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY naics_code
)
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Award Actions
541330 ENGINEERING SERVICES 1,552,108,930.99 1.55 billion 541
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 500.00 500.00 1

Insight

Over the last 10 years, RELIANCE TEST & TECHNOLOGY, LLC (CAGE 7FL60) has received 542 awards totaling $1.55 billion, with an average award value of $2.86 million. Obligations are overwhelmingly concentrated in NAICS 541330, Engineering Services, which accounts for 541 awards and $1.55 billion of the total obligated amount. NAICS 541715 appears only once and is immaterial at $500, indicating a highly focused contracting profile with minimal diversification across NAICS codes.

Annual Trend

SELECT
    year,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '7FL60'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 203,361,220.04 203.36 million 50
2024 194,940,927.76 194.94 million 71
2023 213,361,864.94 213.36 million 84
2022 162,295,024.11 162.30 million 82
2021 173,193,356.87 173.19 million 83
2020 120,222,658.42 120.22 million 49
2019 150,046,597.07 150.05 million 36
2018 111,893,005.00 111.89 million 35
2017 161,211,022.84 161.21 million 40
2016 61,583,753.94 61.58 million 12

Insight

Over the last 10 years, RELIANCE TEST & TECHNOLOGY, LLC has obligated $1.55 billion across 542 awards, averaging about $2.86 million per award. Annual obligations are concentrated in the recent period, with 2021 through 2025 each exceeding $162 million and 2023 marking the high point at $213.36 million. Earlier years were more variable and generally lower, ranging from $61.58 million in 2016 to $161.21 million in 2017, indicating an overall upward shift in annual funding levels and award volume.

Use FPDS Query for deeper contractor analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contractor analysis across buying agencies, NAICS, and annual trends.

Continue from this last 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.