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

MeltyPlayer / MeltyTool / 22887246649

10 Mar 2026 04:33AM UTC coverage: 39.577% (-2.0%) from 41.566%
22887246649

push

github

MeltyPlayer
Fixed golden file comparison.

6725 of 18941 branches covered (35.5%)

Branch coverage included in aggregate %.

2 of 2 new or added lines in 1 file covered. (100.0%)

2094 existing lines in 92 files now uncovered.

28468 of 69981 relevant lines covered (40.68%)

58155.6 hits per line

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

0.0
/FinModelUtility/Fin/Fin/src/animation/keyframes/KeyframeDefinition.cs
1
using System;
2
using System.Runtime.CompilerServices;
3

4
namespace fin.animation.keyframes;
5

6
public readonly record struct KeyframeDefinition<T>(
UNCOV
7
    int Frame,
×
UNCOV
8
    T Value,
×
9
    string FrameType = "")
×
10
    : IComparable<KeyframeDefinition<T>>, IEquatable<KeyframeDefinition<T>> {
11
  [MethodImpl(MethodImplOptions.AggressiveInlining)]
12
  public int CompareTo(KeyframeDefinition<T> other)
13
    => this.Frame - other.Frame;
×
14

15
  public bool Equals(KeyframeDefinition<T> other)
16
    => this.Frame == other.Frame &&
×
17
       (this.Value?.Equals(other.Value) ??
×
18
        this.Value == null && other.Value == null);
×
19
}
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