• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

fyne-io / fyne / 30240283751

27 Jul 2026 05:37AM UTC coverage: 59.896% (-0.02%) from 59.912%
30240283751

push

github

web-flow
Merge pull request #6440 from toaster/lint/trivial_checks

enable a couple of linter checks which only require trivial adjustments

589 of 969 new or added lines in 144 files covered. (60.78%)

14 existing lines in 10 files now uncovered.

27103 of 45250 relevant lines covered (59.9%)

815.37 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

25.0
/test/cloud.go
1
package test
2

3
import (
4
        "fyne.io/fyne/v2"
5
        "fyne.io/fyne/v2/theme"
6
)
7

8
type mockCloud struct {
9
        configured bool
10
}
11

12
func (c *mockCloud) Cleanup(_ fyne.App) {
×
13
        c.configured = false
×
14
}
×
15

NEW
16
func (*mockCloud) ProviderDescription() string {
×
17
        return "Mock cloud implementation"
×
18
}
×
19

NEW
20
func (*mockCloud) ProviderIcon() fyne.Resource {
×
21
        return theme.ComputerIcon()
×
22
}
×
23

NEW
24
func (*mockCloud) ProviderName() string {
×
25
        return "mock"
×
26
}
×
27

28
func (c *mockCloud) Setup(_ fyne.App) error {
2✔
29
        c.configured = true
2✔
30
        return nil
2✔
31
}
2✔
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE TRIAL · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc