@@ -48,7 +48,7 @@ class ProcessTests : public ::testing::Test
4848 File testFile;
4949};
5050
51- TEST_F (ProcessTests, OpenDocumentWithFileName )
51+ TEST_F (ProcessTests, DISABLED_OpenDocumentWithFileName )
5252{
5353 // Test Process::openDocument() with a file name
5454 // This attempts to open the file with the default application
@@ -64,7 +64,7 @@ TEST_F (ProcessTests, OpenDocumentWithFileName)
6464 SUCCEED ();
6565}
6666
67- TEST_F (ProcessTests, OpenDocumentWithUrl )
67+ TEST_F (ProcessTests, DISABLED_OpenDocumentWithUrl )
6868{
6969 // Test opening a URL (this should be safer than opening a file)
7070 // Most systems have a default browser
@@ -77,15 +77,15 @@ TEST_F (ProcessTests, OpenDocumentWithUrl)
7777 SUCCEED ();
7878}
7979
80- TEST_F (ProcessTests, OpenDocumentWithParameters )
80+ TEST_F (ProcessTests, DISABLED_OpenDocumentWithParameters )
8181{
8282 // Test Process::openDocument() with parameters
8383 [[maybe_unused]] bool result = Process::openDocument (testFile.getFullPathName (), " --test-param" );
8484
8585 SUCCEED ();
8686}
8787
88- TEST_F (ProcessTests, OpenDocumentWithEnvironment )
88+ TEST_F (ProcessTests, DISABLED_OpenDocumentWithEnvironment )
8989{
9090 // Test Process::openDocument() with custom environment variables
9191 StringPairArray environment;
@@ -97,7 +97,7 @@ TEST_F (ProcessTests, OpenDocumentWithEnvironment)
9797 SUCCEED ();
9898}
9999
100- TEST_F (ProcessTests, OpenDocumentWithEmptyPath )
100+ TEST_F (ProcessTests, DISABLED_OpenDocumentWithEmptyPath )
101101{
102102 // Test with empty path (should fail gracefully)
103103 [[maybe_unused]] bool result = Process::openDocument (" " , " " );
@@ -106,7 +106,7 @@ TEST_F (ProcessTests, OpenDocumentWithEmptyPath)
106106 SUCCEED ();
107107}
108108
109- TEST_F (ProcessTests, OpenDocumentWithNonExistentFile )
109+ TEST_F (ProcessTests, DISABLED_OpenDocumentWithNonExistentFile )
110110{
111111 // Test with a file that doesn't exist
112112 File nonExistent = File::getSpecialLocation (File::tempDirectory)
@@ -119,7 +119,7 @@ TEST_F (ProcessTests, OpenDocumentWithNonExistentFile)
119119 SUCCEED ();
120120}
121121
122- TEST_F (ProcessTests, OpenDocumentWithSpecialCharacters )
122+ TEST_F (ProcessTests, DISABLED_OpenDocumentWithSpecialCharacters )
123123{
124124 // Create a file with special characters in the name
125125 File specialFile = testFile.getParentDirectory ().getChildFile (" test file with spaces & special.txt" );
0 commit comments