Skip to content

Commit

Permalink
Makes test class simpler
Browse files Browse the repository at this point in the history
  • Loading branch information
Rodrigo Cesar committed May 23, 2024
1 parent f486755 commit 01af36e
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 143 deletions.
143 changes: 0 additions & 143 deletions test-files/AlarmOccurrence.cs

This file was deleted.

24 changes: 24 additions & 0 deletions test-files/TestClass.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Runtime.Serialization;

namespace TestClass
{
/// <summary>
/// Sample class comment.
/// </summary>
public class TestClass
{
/// <summary>
/// Sample comment.
/// </summary>
public int IntProperty { get; set; }

public string StringProperty { get; set; }

public DateTime DateTimeProperty { get; set; }

public bool BooleanProperty { get; set; }
}
}

0 comments on commit 01af36e

Please sign in to comment.