Files
speckle-sharp-sdk/tests/Speckle.Core.Serialization.Tests/TestKit.cs
T
Adam Hathcock 405f3f4ee4 renamespace and other fixes (#2)
* renamespace

* add to sln and move

* manage package centrally

* add sourcelink and use GlobalPackageReference

* properly use globals

* fix nuget push

* fix readme

* add namespace handling for new types

* Removing used classes to stop viral spread of dependencies.  Some JSON usage was STJ and not newtonsoft

* fmt

* initial test

* serialization namespace test

* fmt

* put back old namespaces

* fix tests

* fixes while trying to do a roundtrip test

* remove namespace fix
2024-06-25 10:27:59 +01:00

17 lines
508 B
C#

using Objects.BuiltElements.Revit;
using Speckle.Core.Kits;
namespace Speckle.Core.Serialization.Tests;
public class TestKit : ISpeckleKit
{
public IEnumerable<Type> Types => typeof(RevitWall).Assembly.ExportedTypes;
public IEnumerable<string> Converters { get; }
public string Description { get; }
public string Name { get; }
public string Author { get; }
public string WebsiteOrEmail { get; }
public ISpeckleConverter LoadConverter(string app) => throw new NotImplementedException();
}