first commit

This commit is contained in:
SimonSayeBabu
2025-01-17 13:10:20 +01:00
commit bd1057cec0
16967 changed files with 1048699 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
using NUnit.Framework;
using UnityEditor.Performance.ProfileAnalyzer;
using System.Collections.Generic;
public class UnitsTestFixture
{
internal DisplayUnits displayUnits;
public struct TestData
{
public readonly float value;
public readonly string expectedOutput;
public TestData(float value, string expectedOutput)
{
this.value = value;
this.expectedOutput = expectedOutput;
}
public override string ToString()
{
return string.Format("{0} becomes {1}", value, expectedOutput);
}
}
}