https://github.com/exortek/csharp-unit-test-testlvl
https://github.com/exortek/csharp-unit-test-testlvl
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/exortek/csharp-unit-test-testlvl
- Owner: ExorTek
- Created: 2021-08-13T08:25:42.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-13T12:45:49.000Z (almost 5 years ago)
- Last Synced: 2025-03-10T20:17:12.543Z (over 1 year ago)
- Language: C#
- Size: 3.39 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Unit Test
## Test Level
```csharp
[TestClass]
public class CartTest
{
[TestInitialize]
public void TestInitialize()
{
//Arrange
}
[TestCleanup]
public void TestCleanup()
{
//ClearMeth
}
[TestMethod]
public void AddToCart()
{
//Act
//Assert
}
```

- [Documentation 1](https://docs.microsoft.com/en-us/visualstudio/test/unit-test-basics?view=vs-2019)
- [Documentation 2](https://docs.microsoft.com/en-us/previous-versions/visualstudio/visual-studio-2010/ms245572(v=vs.100))