pub struct TestPoint {Show 15 fields
pub comment: Option<String>,
pub configuration: Option<TestConfigurationReference>,
pub id: Option<i32>,
pub is_active: Option<bool>,
pub is_automated: Option<bool>,
pub last_reset_to_active: Option<OffsetDateTime>,
pub last_updated_by: Option<IdentityRef>,
pub last_updated_date: Option<OffsetDateTime>,
pub links: Option<ReferenceLinks>,
pub project: Option<TeamProjectReference>,
pub results: Option<TestPointResults>,
pub test_case_reference: Option<TestCaseReference>,
pub tester: Option<IdentityRef>,
pub test_plan: Option<TestPlanReference>,
pub test_suite: Option<TestSuiteReference>,
}Expand description
Test Point Class
Fields§
§comment: Option<String>Comment associated to the Test Point
configuration: Option<TestConfigurationReference>Test Configuration Reference
id: Option<i32>Id of the Test Point
is_active: Option<bool>Variable to decide whether the test case is Active or not
is_automated: Option<bool>Is the Test Point for Automated Test Case or Manual
last_reset_to_active: Option<OffsetDateTime>Last Reset to Active Time Stamp for the Test Point
last_updated_by: Option<IdentityRef>§last_updated_date: Option<OffsetDateTime>Last Update Time Stamp for the Test Point
links: Option<ReferenceLinks>The class to represent a collection of REST reference links.
project: Option<TeamProjectReference>Represents a shallow reference to a TeamProject.
results: Option<TestPointResults>Test Point Results
test_case_reference: Option<TestCaseReference>Test Case Reference
tester: Option<IdentityRef>§test_plan: Option<TestPlanReference>The test plan reference resource.
test_suite: Option<TestSuiteReference>The test suite reference resource.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TestPoint
impl<'de> Deserialize<'de> for TestPoint
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for TestPoint
Auto Trait Implementations§
impl Freeze for TestPoint
impl RefUnwindSafe for TestPoint
impl Send for TestPoint
impl Sync for TestPoint
impl Unpin for TestPoint
impl UnwindSafe for TestPoint
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more