1
0

test: add test for tas oper and fix issue

This commit is contained in:
2026-03-31 14:26:17 +08:00
parent d0174bbf86
commit b8184c6ab4
6 changed files with 427 additions and 51 deletions

View File

@@ -0,0 +1,22 @@
using BallanceTasEditor.Backend;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BallanceTasEditorTests {
internal static class TasSequenceUtils {
internal static IEnumerable<ITasSequence> EnumerateTasSequenceImplementation() {
yield return new ListTasSequence();
yield return new LegacyTasSequence();
// TODO: Add GapBufferTasSequence once we finish it.
//yield return new GapBufferTasSequence();
}
}
}