-
-
Notifications
You must be signed in to change notification settings - Fork 2
Added demo tests #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR adds demo tests as placeholders for both runtime and editor environments to support the overall testing strategy.
- Adds a demo test in the runtime tests file with Unity setup, teardown, and a placeholder test.
- Adds a demo test in the editor tests file with similar structure and placeholder assertions.
Reviewed Changes
Copilot reviewed 23 out of 41 changed files in this pull request and generated no comments.
File | Description |
---|---|
Assets/root/Tests/Runtime/DemoTest.cs | Added runtime test with setup, teardown, and a placeholder test. |
Assets/root/Tests/Editor/DemoTest.cs | Added editor test with similar placeholder methods. |
Files not reviewed (18)
- .vscode/extensions.json: Language not supported
- .vscode/launch.json: Language not supported
- .vscode/settings.json: Language not supported
- Assets/root.meta: Language not supported
- Assets/root/CHANGELOG.md.meta: Language not supported
- Assets/root/Editor.meta: Language not supported
- Assets/root/Editor/Gizmos.meta: Language not supported
- Assets/root/Editor/Gizmos/icon.png.meta: Language not supported
- Assets/root/Editor/Scripts.meta: Language not supported
- Assets/root/Editor/Scripts/Package.Editor.asmdef.meta: Language not supported
- Assets/root/Runtime.meta: Language not supported
- Assets/root/Runtime/Package.Runtime.asmdef.meta: Language not supported
- Assets/root/Tests.meta: Language not supported
- Assets/root/Tests/Editor.meta: Language not supported
- Assets/root/Tests/Editor/Package.Editor.Tests.asmdef.meta: Language not supported
- Assets/root/Tests/Runtime.meta: Language not supported
- Assets/root/Tests/Runtime/Package.Tests.asmdef.meta: Language not supported
- Assets/root/package.json.meta: Language not supported
Comments suppressed due to low confidence (2)
Assets/root/Tests/Runtime/DemoTest.cs:26
- [nitpick] The test always asserts true, serving only as a placeholder. Consider adding meaningful test assertions to better validate functionality.
Assert.IsTrue(true, "This test is a placeholder and should be replaced with actual test logic.");
Assets/root/Tests/Editor/DemoTest.cs:26
- [nitpick] The test always asserts true, serving only as a placeholder. Consider adding meaningful test assertions to better validate functionality.
Assert.IsTrue(true, "This test is a placeholder and should be replaced with actual test logic.");
No description provided.