File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
Assets/FbxExporters/Editor/UnitTests Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,13 @@ public void BasicTest() {
48
48
LogNonEmptyString ( "package path" , Editor . Integrations . GetPackagePath ( ) ) ;
49
49
LogNonEmptyString ( "package version" , Editor . Integrations . GetPackageVersion ( ) ) ;
50
50
LogNonEmptyString ( "temp path" , Editor . Integrations . GetTempSavePath ( ) ) ;
51
+ LogNonEmptyString ( "export settings path" , Editor . Integrations . GetExportSettingsPath ( ) ) ;
52
+
53
+ // test that the paths don't contain backslashes
54
+ Assert . IsFalse ( Editor . Integrations . GetAppPath ( ) . Contains ( "\\ " ) ) ;
55
+ Assert . IsFalse ( Editor . Integrations . GetProjectPath ( ) . Contains ( "\\ " ) ) ;
56
+ Assert . IsFalse ( Editor . Integrations . GetTempSavePath ( ) . Contains ( "\\ " ) ) ;
57
+ Assert . IsFalse ( Editor . Integrations . GetExportSettingsPath ( ) . Contains ( "\\ " ) ) ;
51
58
}
52
59
}
53
60
}
You can’t perform that action at this time.
0 commit comments