refactoring

This commit is contained in:
Miha Kralj
2025-12-16 21:16:50 -08:00
parent a67ad65fa5
commit d277e08056
137 changed files with 5074 additions and 3178 deletions
+3 -3
View File
@@ -117,7 +117,7 @@ public class ConvIndicatorTests
{
var indicator = new ConvIndicator();
indicator.Initialize();
var method = indicator.GetType().GetMethod("OnPaintChart");
Assert.NotNull(method);
Assert.Equal(typeof(ConvIndicator), method.DeclaringType);
@@ -170,10 +170,10 @@ public class ConvIndicatorTests
public void ConvIndicator_InvalidWeights_FallsBackToDefault()
{
var indicator = new ConvIndicator { WeightsInput = "invalid" };
// Should not throw, but fallback
indicator.Initialize();
Assert.Single(indicator.LinesSeries);
}