Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AssignedUsers ¶
This struct models the many2many relationship between the Assignment and its Assignees
type Assignment ¶
type Assignment struct { // Automated Xorm Fields -----------| Id int64 UpdatedAt time.Time `xorm:"updated"` // Foreign Keys --------------------| TestId int64 IsCase bool Assignees []*user.User `xorm:"-"` TestCase *test.Case `xorm:"-"` TestSequence *test.Sequence `xorm:"-"` }
func (Assignment) RenderItemTemplate ¶
type TestCreation ¶
type TestCreation struct { // Automated Xorm Fields -----------| Id int64 UpdatedAt time.Time `xorm:"updated"` // Foreign Keys --------------------| TestId int64 IsCase bool TestCase *test.Case `xorm:"-"` TestSequence *test.Sequence `xorm:"-"` }
func (TestCreation) RenderItemTemplate ¶
type TestProtocol ¶
type TestProtocol struct { // Automated Xorm Fields -----------| Id int64 UpdatedAt time.Time `xorm:"updated"` // Foreign Keys --------------------| TestProtocolId int64 TestId int64 IsCase bool CaseExecutionProtocol *test.CaseExecutionProtocol `xorm:"-"` SequenceExecutionProtocol *test.SequenceExecutionProtocol `xorm:"-"` // The test sequence/case are lazy loaded so we have more information in our activity item TestCase *test.Case `xorm:"-"` TestSequence *test.Sequence `xorm:"-"` }
func (TestProtocol) RenderItemTemplate ¶
Click to show internal directories.
Click to hide internal directories.