MeshBaker
Namespaces | Classes | Enumerations
UnityTest Namespace Reference

Namespaces

namespace  IntegrationTestRunner
 
namespace  IntegrationTests
 
namespace  UnitTestRunner
 

Classes

class  ActionBase
 
class  ActionBaseGeneric
 
class  AssertionComponent
 
class  AssertionComponentEditor
 
class  AssertionException
 
class  AssertionExplorerWindow
 
class  AssertionListRenderer
 
class  Assertions
 
class  Batch
 
class  BoolComparer
 
class  CallTesting
 
class  ColliderComparer
 
class  ComparerBase
 
class  ComparerBaseGeneric
 
class  CustomComponent
 
class  DropDownControl
 
class  DTOFormatter
 
class  FloatComparer
 
class  GeneralComparer
 
class  GroupByComparerRenderer
 
class  GroupByExecutionMethodRenderer
 
class  GroupByGoRenderer
 
class  GroupByNothingRenderer
 
class  GroupByTestsRenderer
 
class  GroupLine
 
class  GuiHelper
 
interface  IAssertionComponentConfigurator
 
class  Icons
 
interface  IListRenderer
 
class  IntComparer
 
class  IntegrationTestGroupLine
 
class  IntegrationTestLine
 
class  IntegrationTestRendererBase
 
class  IntegrationTestsHierarchyAnnotation
 
class  IntegrationTestsRunnerSettings
 
class  IntegrationTestsRunnerWindow
 
class  InvalidPathException
 
class  IsRenderedByCamera
 
interface  ITestComponent
 
interface  IUnitTestEngine
 
class  MemberResolver
 
class  NetworkResultSender
 
class  NetworkResultsReceiver
 
class  NUnitExtensions
 
class  NUnitTestEngine
 
class  PlatformRunnerSettings
 
class  PlayerSettingConfigurator
 
class  ProjectSettingsBase
 
class  PropertyPathSelector
 
class  PropertyResolver
 
class  RenderingOptions
 
class  ResultDTO
 
class  ResultSummarizer
 Summary description for ResultSummarizer. More...
 
class  SampleTests
 
class  SerializableTestResult
 
class  StackTraceFilter
 Summary description for StackTraceFilter. More...
 
class  StringComparer
 
class  Styles
 
class  TestComponent
 
class  TestComponentEditor
 
class  TestFilter
 
class  TestFilterSettings
 
class  TestLine
 
class  TestResult
 
class  TestRunner
 
class  TestRunnerConfigurator
 
class  TransformComparer
 
class  UnitTestInfo
 
class  UnitTestRendererLine
 
class  UnitTestResult
 
class  UnitTestsRunnerSettings
 
class  UnitTestView
 
class  ValueDoesNotChange
 
class  Vector2Comparer
 
class  Vector3Comparer
 
class  Vector4Comparer
 
class  VectorComparerBase
 
class  XmlResultWriter
 

Enumerations

enum  CheckMethod {
  CheckMethod.AfterPeriodOfTime = 1 << 0, CheckMethod.Start = 1 << 1, CheckMethod.Update = 1 << 2, CheckMethod.FixedUpdate = 1 << 3,
  CheckMethod.LateUpdate = 1 << 4, CheckMethod.OnDestroy = 1 << 5, CheckMethod.OnEnable = 1 << 6, CheckMethod.OnDisable = 1 << 7,
  CheckMethod.OnControllerColliderHit = 1 << 8, CheckMethod.OnParticleCollision = 1 << 9, CheckMethod.OnJointBreak = 1 << 10, CheckMethod.OnBecameInvisible = 1 << 11,
  CheckMethod.OnBecameVisible = 1 << 12, CheckMethod.OnTriggerEnter = 1 << 13, CheckMethod.OnTriggerExit = 1 << 14, CheckMethod.OnTriggerStay = 1 << 15,
  CheckMethod.OnCollisionEnter = 1 << 16, CheckMethod.OnCollisionExit = 1 << 17, CheckMethod.OnCollisionStay = 1 << 18, CheckMethod.OnTriggerEnter2D = 1 << 19,
  CheckMethod.OnTriggerExit2D = 1 << 20, CheckMethod.OnTriggerStay2D = 1 << 21, CheckMethod.OnCollisionEnter2D = 1 << 22, CheckMethod.OnCollisionExit2D = 1 << 23,
  CheckMethod.OnCollisionStay2D = 1 << 24
}
 
enum  TestResultState : byte {
  TestResultState.Inconclusive = 0, TestResultState.NotRunnable = 1, TestResultState.Skipped = 2, TestResultState.Ignored = 3,
  TestResultState.Success = 4, TestResultState.Failure = 5, TestResultState.Error = 6, TestResultState.Cancelled = 7
}
 

Enumeration Type Documentation

§ CheckMethod

enum UnityTest.CheckMethod
strong
Enumerator
AfterPeriodOfTime 
Start 
Update 
FixedUpdate 
LateUpdate 
OnDestroy 
OnEnable 
OnDisable 
OnControllerColliderHit 
OnParticleCollision 
OnJointBreak 
OnBecameInvisible 
OnBecameVisible 
OnTriggerEnter 
OnTriggerExit 
OnTriggerStay 
OnCollisionEnter 
OnCollisionExit 
OnCollisionStay 
OnTriggerEnter2D 
OnTriggerExit2D 
OnTriggerStay2D 
OnCollisionEnter2D 
OnCollisionExit2D 
OnCollisionStay2D 

§ TestResultState

enum UnityTest.TestResultState : byte
strong
Enumerator
Inconclusive 
NotRunnable 

The test was not runnable.

Skipped 

The test has been skipped.

Ignored 

The test has been ignored.

Success 

The test succeeded

Failure 

The test failed

Error 

The test encountered an unexpected exception

Cancelled 

The test was cancelled by the user