1111import  XCTest
1212@testable   import  SwiftDocCUtilities
1313
14- #if !os(Linux) && !os(Android) 
14+ #if !os(Linux) && !os(Android) && !os(Windows)  
1515fileprivate  extension  NSNotification . Name  { 
1616    static  let  testNodeUpdated =  NSNotification . Name ( rawValue:  " testNodeUpdated " ) 
1717    static  let  testDirectoryReloaded =  NSNotification . Name ( rawValue:  " testDirectoryReloaded " ) 
@@ -24,7 +24,7 @@ func fileURLsAreEqual(_ url1: URL, _ url2: URL) -> Bool {
2424#endif 
2525
2626class  DirectoryMonitorTests :  XCTestCase  { 
27-     #if !os(Linux) && !os(Android) 
27+     #if !os(Linux) && !os(Android) && !os(Windows)  
2828    // - MARK: Directory watching test infra
2929
3030    /// Method that automates setting up a directory monitor, setting up the relevant expectations for a test,
@@ -118,7 +118,7 @@ class DirectoryMonitorTests: XCTestCase {
118118    /// Tests a succession of file system changes and verifies that they produce
119119    /// the expected monitor events.
120120    func  testMonitorUpdates( )  throws  { 
121-         #if !os(Linux) && !os(Android) 
121+         #if !os(Linux) && !os(Android) && !os(Windows)  
122122
123123        // Create temp folder & sub-folder.
124124        let  tempSubfolderURL  =  try createTemporaryDirectory ( named:  " subfolder " ) 
@@ -167,7 +167,7 @@ class DirectoryMonitorTests: XCTestCase {
167167    } 
168168
169169    func  testMonitorDoesNotTriggerUpdates( )  throws  { 
170-         #if !os(Linux) && !os(Android) 
170+         #if !os(Linux) && !os(Android) && !os(Windows)  
171171
172172        // Create temp folder & sub-folder.
173173        let  tempSubfolderURL  =  try createTemporaryDirectory ( named:  " subfolder " ) 
@@ -200,7 +200,7 @@ class DirectoryMonitorTests: XCTestCase {
200200
201201    /// Tests a zero sum change aggregation triggers an event.
202202    func  testMonitorZeroSumSizeChangesUpdates( )  throws  { 
203-         #if !os(Linux) && !os(Android) 
203+         #if !os(Linux) && !os(Android) && !os(Windows)  
204204
205205        // Create temp folder & sub-folder.
206206        let  tempSubfolderURL  =  try createTemporaryDirectory ( named:  " subfolder " ) 
0 commit comments