Skip to content

Commit

Permalink
단위 테스트 시스템 변경 - SpecFlow 폐기 - 다시 xUnit으로 전환
Browse files Browse the repository at this point in the history
  • Loading branch information
rkttu committed Jan 17, 2024
1 parent 7720e78 commit b3c6269
Show file tree
Hide file tree
Showing 18 changed files with 217 additions and 1,246 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
Solution_Name: src\TableCloth.sln
Hostess_Project_Path: src\Hostess\Hostess.csproj
ResourceBuilder_Project_Path: src\TableCloth.ResourceBuilder\TableCloth.ResourceBuilder.csproj
Test_Project_Path: src\TableCloth.SpecFlow\TableCloth.SpecFlow.csproj
Test_Project_Path: src\TableCloth.Test\TableCloth.Test.csproj
Loom_Project_Path: src\Loom\Loom.csproj
TableCloth_Project_Directory: src\TableCloth
TableCloth_Project_Path: src\TableCloth\TableCloth.csproj
Expand Down
20 changes: 20 additions & 0 deletions src/TableCloth.ResourceBuilder/TableCloth.ResourceBuilder.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,26 @@
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\ARM64\Debug\</OutputPath>
<DefineConstants>TRACE;DEBUG;NETFX</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>ARM64</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|ARM64'">
<OutputPath>bin\ARM64\Release\</OutputPath>
<DefineConstants>TRACE;NETFX</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>ARM64</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down
18 changes: 16 additions & 2 deletions src/TableCloth.SetupBuilder/TableCloth.SetupBuilder.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,22 @@
<DefineConstants>NETFX</DefineConstants>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
<OutputPath>bin\Release\</OutputPath>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\ARM64\Debug\</OutputPath>
<DefineConstants>TRACE;DEBUG;NETFX</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>ARM64</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|ARM64'">
<OutputPath>bin\ARM64\Release\</OutputPath>
<DefineConstants>NETFX</DefineConstants>
<PlatformTarget>ARM64</PlatformTarget>
<LangVersion>7.3</LangVersion>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="BootstrapperCore, Version=3.0.0.0, Culture=neutral, PublicKeyToken=ce35f76fcda82bad, processorArchitecture=MSIL">
Expand Down
40 changes: 0 additions & 40 deletions src/TableCloth.SpecFlow/Features/AppMessageBox.feature

This file was deleted.

Loading

0 comments on commit b3c6269

Please sign in to comment.