From 35bbd30c2506b3d0b18397ef1443fb18c0d893d6 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Tue, 10 Nov 2020 18:35:21 -0500 Subject: Move tests to a separate project --- IRCSharp.Tests/Tokenization/Data/SplitModel.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 IRCSharp.Tests/Tokenization/Data/SplitModel.cs (limited to 'IRCSharp.Tests/Tokenization/Data/SplitModel.cs') diff --git a/IRCSharp.Tests/Tokenization/Data/SplitModel.cs b/IRCSharp.Tests/Tokenization/Data/SplitModel.cs new file mode 100644 index 0000000..5386326 --- /dev/null +++ b/IRCSharp.Tests/Tokenization/Data/SplitModel.cs @@ -0,0 +1,15 @@ +using System.Collections.Generic; + +namespace IRCTokens.Tests.Data +{ + public class SplitModel + { + public List Tests { get; set; } + + public class Test + { + public string Input { get; set; } + public JoinModel.Atoms Atoms { get; set; } + } + } +} -- cgit 1.4.1