22 lines
537 B
C#
22 lines
537 B
C#
using UnityEngine;
|
|
using UnityEditor;
|
|
using UnityEngine.TestTools;
|
|
using NUnit.Framework;
|
|
using System.Collections;
|
|
using Autodesk.Fbx;
|
|
|
|
namespace Autodesk.Fbx.UnitTests
|
|
{
|
|
internal class FbxIOFileHeaderInfoTest : TestBase<FbxIOFileHeaderInfo>
|
|
{
|
|
|
|
[Test]
|
|
public void TestBasics ()
|
|
{
|
|
var fileHeaderInfo = new FbxIOFileHeaderInfo ();
|
|
TestGetter (fileHeaderInfo.mCreator);
|
|
TestGetter (fileHeaderInfo.mFileVersion);
|
|
fileHeaderInfo.Dispose ();
|
|
}
|
|
}
|
|
} |