[PR #3] [MERGED] Unit tests #164

Closed
opened 2026-05-05 11:20:01 -06:00 by gitea-mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/qmlnet/qmlnet/pull/3
Author: @pauldotknopf
Created: 7/12/2018
Status: Merged
Merged: 7/13/2018
Merged by: @pauldotknopf

Base: masterHead: unit-tests


📝 Commits (8)

  • e728c53 Moving netCore to net.
  • bdd9d82 Removed copying of native dlls. Removed the different build configurations for each platform.
  • b9333fe Added empty unit test project.
  • 8b9c629 Added back in the boolean tests.
  • 898f3b2 Merge branch 'master' into unit-tests
  • 6bbd501 Removing unused debug helper output from qml project.
  • cccf69a Removed all reference to debug variable stuff.
  • 896425a Removing unused configuration.

📊 Changes

52 files changed (+389 additions, -2332 deletions)

View changed files

📝 src/native/QtNetCoreQml/QtNetCoreQml.pro (+0 -7)
📝 src/net/.gitignore (+49 -9)
📝 src/net/.vscode/launch.json (+0 -0)
📝 src/net/.vscode/tasks.json (+0 -0)
src/net/Qt.NetCore.Sandbox/App.config (+0 -6)
📝 src/net/Qt.NetCore.Sandbox/Page1.qml (+3 -3)
📝 src/net/Qt.NetCore.Sandbox/Page1Form.ui.qml (+25 -0)
src/net/Qt.NetCore.Sandbox/Program.Tests.cs (+0 -104)
📝 src/net/Qt.NetCore.Sandbox/Program.UI.cs (+79 -20)
src/net/Qt.NetCore.Sandbox/Properties/AssemblyInfo.cs (+0 -36)
📝 src/net/Qt.NetCore.Sandbox/Qt.NetCore.Sandbox.csproj (+7 -77)
📝 src/net/Qt.NetCore.Sandbox/main.qml (+19 -1)
src/net/Qt.NetCore.Sandbox/packages.config (+0 -10)
📝 src/net/Qt.NetCore.Tests/BaseTests.cs (+4 -12)
📝 src/net/Qt.NetCore.Tests/BoolTests.cs (+2 -11)
src/net/Qt.NetCore.Tests/CharTests.cs (+0 -139)
src/net/Qt.NetCore.Tests/DateTimeTests.cs (+0 -93)
src/net/Qt.NetCore.Tests/DoubleTests.cs (+0 -113)
src/net/Qt.NetCore.Tests/IntTests.cs (+0 -113)
src/net/Qt.NetCore.Tests/Interop/StringInteropTests.cs (+0 -71)

...and 32 more files

📄 Description

When moving to .NET Core, we got rid of the unit tests.

This effort adds them back.

Once they are back, I will be setting up a build server for Linux/Mac/Windows (.NET Core only).


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/qmlnet/qmlnet/pull/3 **Author:** [@pauldotknopf](https://github.com/pauldotknopf) **Created:** 7/12/2018 **Status:** ✅ Merged **Merged:** 7/13/2018 **Merged by:** [@pauldotknopf](https://github.com/pauldotknopf) **Base:** `master` ← **Head:** `unit-tests` --- ### 📝 Commits (8) - [`e728c53`](https://github.com/qmlnet/qmlnet/commit/e728c532e076e45874547cd0d964aac0c257ab98) Moving netCore to net. - [`bdd9d82`](https://github.com/qmlnet/qmlnet/commit/bdd9d82dadca85b03d87dc848d1d65b7017987da) Removed copying of native dlls. Removed the different build configurations for each platform. - [`b9333fe`](https://github.com/qmlnet/qmlnet/commit/b9333fe6ac2ebae17f7d4c2c5ea0c527b5da1f9d) Added empty unit test project. - [`8b9c629`](https://github.com/qmlnet/qmlnet/commit/8b9c62906abbe391f942fdd8946fa2a8c5aa8ebc) Added back in the boolean tests. - [`898f3b2`](https://github.com/qmlnet/qmlnet/commit/898f3b2a6d264a80c5be150fd7f16aa6243c5bb9) Merge branch 'master' into unit-tests - [`6bbd501`](https://github.com/qmlnet/qmlnet/commit/6bbd501b51ae665b91ea1426ea38c07e7c45a66d) Removing unused debug helper output from qml project. - [`cccf69a`](https://github.com/qmlnet/qmlnet/commit/cccf69a140a59cb97702ff370cd6f882b8cce7ce) Removed all reference to debug variable stuff. - [`896425a`](https://github.com/qmlnet/qmlnet/commit/896425af3dda950bc671cab6c8e82fefa8969b5e) Removing unused configuration. ### 📊 Changes **52 files changed** (+389 additions, -2332 deletions) <details> <summary>View changed files</summary> 📝 `src/native/QtNetCoreQml/QtNetCoreQml.pro` (+0 -7) 📝 `src/net/.gitignore` (+49 -9) 📝 `src/net/.vscode/launch.json` (+0 -0) 📝 `src/net/.vscode/tasks.json` (+0 -0) ➖ `src/net/Qt.NetCore.Sandbox/App.config` (+0 -6) 📝 `src/net/Qt.NetCore.Sandbox/Page1.qml` (+3 -3) 📝 `src/net/Qt.NetCore.Sandbox/Page1Form.ui.qml` (+25 -0) ➖ `src/net/Qt.NetCore.Sandbox/Program.Tests.cs` (+0 -104) 📝 `src/net/Qt.NetCore.Sandbox/Program.UI.cs` (+79 -20) ➖ `src/net/Qt.NetCore.Sandbox/Properties/AssemblyInfo.cs` (+0 -36) 📝 `src/net/Qt.NetCore.Sandbox/Qt.NetCore.Sandbox.csproj` (+7 -77) 📝 `src/net/Qt.NetCore.Sandbox/main.qml` (+19 -1) ➖ `src/net/Qt.NetCore.Sandbox/packages.config` (+0 -10) 📝 `src/net/Qt.NetCore.Tests/BaseTests.cs` (+4 -12) 📝 `src/net/Qt.NetCore.Tests/BoolTests.cs` (+2 -11) ➖ `src/net/Qt.NetCore.Tests/CharTests.cs` (+0 -139) ➖ `src/net/Qt.NetCore.Tests/DateTimeTests.cs` (+0 -93) ➖ `src/net/Qt.NetCore.Tests/DoubleTests.cs` (+0 -113) ➖ `src/net/Qt.NetCore.Tests/IntTests.cs` (+0 -113) ➖ `src/net/Qt.NetCore.Tests/Interop/StringInteropTests.cs` (+0 -71) _...and 32 more files_ </details> ### 📄 Description When moving to .NET Core, we got rid of the unit tests. This effort adds them back. Once they are back, I will be setting up a build server for Linux/Mac/Windows (.NET Core only). --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
gitea-mirror 2026-05-05 11:20:01 -06:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: github-starred/qmlnet#164
No description provided.