-
Notifications
You must be signed in to change notification settings - Fork 412
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
72c48ed
commit 5c62b62
Showing
5 changed files
with
66 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package fiz | ||
|
||
import ( | ||
"github.com/vektra/mockery/v2/pkg/fixtures/example_project/fiz/fizi/fiz1" | ||
"github.com/vektra/mockery/v2/pkg/fixtures/example_project/fiz/fizi/fiz2" | ||
) | ||
|
||
type Fiz interface { | ||
FA(f fiz1.Fiz1) | ||
FB(f fiz2.Fiz2) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package fiz1 | ||
|
||
import "github.com/vektra/mockery/v2/pkg/fixtures/example_project/fiz/fizi/internal" | ||
|
||
type Fiz1 = internal.FizI1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package fiz2 | ||
|
||
import "github.com/vektra/mockery/v2/pkg/fixtures/example_project/fiz/fizi/internal" | ||
|
||
type Fiz2 = internal.FizI2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package internal | ||
|
||
type FizI1 struct { | ||
A int | ||
} | ||
|
||
type FizI2 struct { | ||
B string | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters