@@ -63,22 +63,19 @@ To run ALL the [MSBuild Integration Tests](#msbuild-integration-tests) *and*
63
63
all the [ MSBuild Task Unit Tests] ( #msbuild-task-tests ) , run:
64
64
65
65
``` sh
66
- ./dotnet-local.sh test bin/TestDebug/net7.0/Xamarin.Android.Build.Tests.dll --filter=Category ! =DotNetIgnore
66
+ ./dotnet-local.sh test bin/TestDebug/net7.0/Xamarin.Android.Build.Tests.dll
67
67
```
68
68
69
69
To run ALL the supported [ Device Integration Tests] ( #devive-integration-tests ) , run:
70
70
71
71
``` sh
72
- ./dotnet-local.sh test bin/TestDebug/MSBuildDeviceIntegration/net7.0/MSBuildDeviceIntegration.dll --filter=Category ! =DotNetIgnore
72
+ ./dotnet-local.sh test bin/TestDebug/MSBuildDeviceIntegration/net7.0/MSBuildDeviceIntegration.dll
73
73
```
74
74
75
75
If no Android device is attached, then the emulator will be created.
76
76
The ` ADB_TARGET ` environment variable can be used to explicitly specify which
77
77
Android device should be used when running Device Integration Tests.
78
78
79
- NOTE: Not all tests work under .NET for Android yet. So we need to filter
80
- them on the ` DotNetIgnore ` category.
81
-
82
79
To run a specific test you can use the ` Name=Value ` argument for ` --filter ` ,
83
80
84
81
``` sh
@@ -106,22 +103,19 @@ To run ALL the [MSBuild Integration Tests](#msbuild-integration-tests) *and*
106
103
all the [ MSBuild Task Unit Tests] ( #msbuild-task-tests ) , run:
107
104
108
105
``` cmd
109
- dotnet-local.cmd test bin\TestDebug\net7.0\Xamarin.Android.Build.Tests.dll --filter=Category!=DotNetIgnore
106
+ dotnet-local.cmd test bin\TestDebug\net7.0\Xamarin.Android.Build.Tests.dll
110
107
```
111
108
112
109
To run ALL the supported [ Device Integration Tests] ( #devive-integration-tests ) , runs:
113
110
114
111
``` cmd
115
- dotnet-local.cmd test bin\TestDebug\MSBuildDeviceIntegration\net7.0\MSBuildDeviceIntegration.dll --filter=Category!=DotNetIgnore
112
+ dotnet-local.cmd test bin\TestDebug\MSBuildDeviceIntegration\net7.0\MSBuildDeviceIntegration.dll
116
113
```
117
114
118
115
If no Android device is attached, then the emulator will be created.
119
116
The ` ADB_TARGET ` environment variable can be used to explicitly specify which
120
117
Android device should be used when running Device Integration Tests.
121
118
122
- NOTE: Not all tests work under .NET for Android yet. So we need to filter
123
- them on the ` DotNetIgnore ` category.
124
-
125
119
To run a specific test you can use the ` Name=Value ` argument for the ` --filter ` ,
126
120
127
121
``` cmd
0 commit comments