-
Notifications
You must be signed in to change notification settings - Fork 269
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 class data rows should not be executed #546
Changes from 2 commits
d21ba97
be0402a
1858a3c
a691dec
ef523be
7e502d9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
|
||
namespace MSTestAdapter.Smoke.E2ETests | ||
{ | ||
using Microsoft.MSTestV2.CLIAutomation; | ||
using Microsoft.VisualStudio.TestTools.UnitTesting; | ||
|
||
[TestClass] | ||
public class DataRowTests : CLITestBase | ||
{ | ||
private const string TestAssembly = "DataRowTestProject.dll"; | ||
|
||
[TestMethod] | ||
public void ExecuteOnlyDerivedClassDataRowsWhenBothBaseAndDerviedClassHasDataRows() | ||
{ | ||
this.InvokeVsTestForExecution(new string[] { TestAssembly }); | ||
|
||
this.ValidatePassedTestsContain( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Shouldn't this validation change after using the filter ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. By mistake added filter in first test. |
||
"DataRowTestMethod (cherry)", | ||
"DataRowTestMethod (banana)", | ||
"DataRowTestMethod (Apple)", | ||
"DataRowTestMethod (orange)", | ||
"DataRowTestMethod (pineapple)"); | ||
|
||
// 4 tests of BaseClass - 3 datarow result and 1 parent result | ||
// 3 tests of DerivedClass - 2 datarow result and 1 parent result | ||
// Total 7 tests - Making sure that DerivedClass doesn't run BaseClass tests | ||
this.ValidatePassedTestsCount(7); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is little confusing. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Didn't realize the confusion. Added new test. |
||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
|
||
namespace DataRowTestProject | ||
{ | ||
using Microsoft.VisualStudio.TestTools.UnitTesting; | ||
|
||
[TestClass] | ||
public class BaseClass | ||
{ | ||
[TestMethod] | ||
[DataRow("cherry")] | ||
[DataRow("banana")] | ||
[DataRow("Apple")] | ||
public virtual void DataRowTestMethod(string a) | ||
{ | ||
Assert.IsTrue(true); | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TestFxRoot Condition="$(TestFxRoot) == ''">..\..\..\..\</TestFxRoot> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net452</TargetFramework> | ||
<IsPackable>false</IsPackable> | ||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> | ||
<OutputPath>$(TestFxRoot)artifacts\TestAssets\</OutputPath> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\..\..\src\TestFramework\Extension.Desktop\Extension.Desktop.csproj" /> | ||
<ProjectReference Include="..\..\..\..\src\TestFramework\MSTest.Core\MSTest.Core.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" /> | ||
</ItemGroup> | ||
|
||
</Project> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
|
||
namespace DataRowTestProject | ||
{ | ||
using Microsoft.VisualStudio.TestTools.UnitTesting; | ||
|
||
[TestClass] | ||
public class DerivedClass : BaseClass | ||
{ | ||
[TestMethod] | ||
[DataRow("orange")] | ||
[DataRow("pineapple")] | ||
public override void DataRowTestMethod(string a) | ||
{ | ||
Assert.IsTrue(true); | ||
} | ||
} | ||
} |
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.
Can we add tests?
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.
Added.