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

thorstenalpers / CleanMyPosts / 15113572820

19 May 2025 12:55PM UTC coverage: 11.649% (-0.5%) from 12.158%
15113572820

push

github

thorstenalpers
Improve log view

16 of 270 branches covered (5.93%)

Branch coverage included in aggregate %.

0 of 30 new or added lines in 2 files covered. (0.0%)

8 existing lines in 2 files now uncovered.

114 of 846 relevant lines covered (13.48%)

0.36 hits per line

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

0.0
/src/UI/ViewModels/LogViewModel.cs
1
using System.Collections.ObjectModel;
2
using CommunityToolkit.Mvvm.ComponentModel;
3
using CommunityToolkit.Mvvm.Input;
4

5
namespace CleanMyPosts.UI.ViewModels;
6

7
public partial class LogViewModel : ObservableObject
8
{
9
    public ObservableCollection<string> LogEntries { get; } = [];
×
10

11
    [ObservableProperty]
12
    private string _selectedLogEntry;
13

14
    public void AppendLog(string message)
15
    {
UNCOV
16
        LogEntries.Add(message);
×
UNCOV
17
    }
×
18

19
    [RelayCommand]
20
    private void ClearLog()
21
    {
UNCOV
22
        LogEntries.Clear();
×
UNCOV
23
    }
×
24
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc