golem_test_framework/lib.rs
1// Copyright 2024-2025 Golem Cloud
2//
3// Licensed under the Golem Source License v1.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://license.golem.cloud/LICENSE
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15/// Individual components of an integration test such as services, databases etc.
16pub mod components;
17
18/// Different ways to configure the launch of test components
19pub mod config;
20
21/// Higher level DSL for expressing common steps of tests and benchmarks
22pub mod dsl;
23
24pub mod model;
25
26pub type Result<T> = anyhow::Result<T>;
27
28#[cfg(test)]
29test_r::enable!();