test: add test for tas oper and fix issue
This commit is contained in:
22
BallanceTasEditor/BallanceTasEditorTests/TasSequenceUtils.cs
Normal file
22
BallanceTasEditor/BallanceTasEditorTests/TasSequenceUtils.cs
Normal 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();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user