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

MeltyPlayer / MeltyTool / 19622977055

24 Nov 2025 04:05AM UTC coverage: 41.989% (+2.1%) from 39.89%
19622977055

push

github

MeltyPlayer
Switched float precision to fix broken tests.

6747 of 18131 branches covered (37.21%)

Branch coverage included in aggregate %.

28639 of 66144 relevant lines covered (43.3%)

65384.8 hits per line

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

15.38
/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>(
7
    int Frame,
90,205✔
8
    T Value,
360,820✔
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