Skip to content

Commit

Permalink
test coverage - cover all cases
Browse files Browse the repository at this point in the history
  • Loading branch information
koros committed May 15, 2024
1 parent 55d9a66 commit bec7828
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -930,7 +930,7 @@ public void GetOriginalComposedType_ReturnsComposedType_WhenElementIsCodeClass()
{
var composedType = new Mock<CodeComposedTypeBase>();

var codeClass = new CodeClass
CodeElement codeClass = new CodeClass
{
OriginalComposedType = composedType.Object
};
Expand All @@ -949,7 +949,7 @@ public void GetOriginalComposedType_ReturnsComposedType_WhenElementIsCodeInterfa
OriginalComposedType = composedType.Object
};

var codeInterface = new CodeInterface()
CodeElement codeInterface = new CodeInterface()
{
OriginalClass = codeClass,
};
Expand Down

0 comments on commit bec7828

Please sign in to comment.