From a48720796cc332b649341d1b64d045fb76f1d469 Mon Sep 17 00:00:00 2001 From: Katy Coe Date: Wed, 24 Jun 2020 22:18:16 +0200 Subject: [PATCH] Tests: Add test stub for CppTypes --- Il2CppTests/TestCppTypes.cs | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Il2CppTests/TestCppTypes.cs diff --git a/Il2CppTests/TestCppTypes.cs b/Il2CppTests/TestCppTypes.cs new file mode 100644 index 0000000..4e182cc --- /dev/null +++ b/Il2CppTests/TestCppTypes.cs @@ -0,0 +1,28 @@ +/* + Copyright 2020 Katy Coe - http://www.hearthcode.org - http://www.djkaty.com + + All rights reserved. +*/ + +using System; +using System.IO; +using Il2CppInspector.Cpp; +using Il2CppInspector.Outputs.UnityHeaders; +using Il2CppInspector.Reflection; +using NUnit.Framework; + +namespace Il2CppInspector +{ + [TestFixture] + public partial class FixedTests + { + [Test] + public void TestCppTypes() { + // TODO: Flesh out CppTypes test + + var cppTypes = CppTypes.FromUnityHeaders(new UnityVersion("2019.3.1f1")); + + throw new NotImplementedException(); + } + } +}