Skip to content

Commit

Permalink
Code coverage improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
David Walker committed Apr 13, 2020
1 parent d9bf31b commit d08afcc
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 7 deletions.
4 changes: 3 additions & 1 deletion src/FlightRecorder.Entities/Db/Aircraft.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
using System.Collections.Generic;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Diagnostics.CodeAnalysis;

namespace FlightRecorder.Entities.Db
{
[ExcludeFromCodeCoverage]
public partial class Aircraft
{
public Aircraft()
Expand Down
4 changes: 3 additions & 1 deletion src/FlightRecorder.Entities/Db/Airline.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
using System.Collections.Generic;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Diagnostics.CodeAnalysis;

namespace FlightRecorder.Entities.Db
{
[ExcludeFromCodeCoverage]
public partial class Airline
{
public Airline()
Expand Down
4 changes: 3 additions & 1 deletion src/FlightRecorder.Entities/Db/Flight.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
using System.Collections.Generic;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Diagnostics.CodeAnalysis;

namespace FlightRecorder.Entities.Db
{
[ExcludeFromCodeCoverage]
public partial class Flight
{
public Flight()
Expand Down
4 changes: 3 additions & 1 deletion src/FlightRecorder.Entities/Db/Location.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
using System.Collections.Generic;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Diagnostics.CodeAnalysis;

namespace FlightRecorder.Entities.Db
{
[ExcludeFromCodeCoverage]
public partial class Location
{
public Location()
Expand Down
4 changes: 3 additions & 1 deletion src/FlightRecorder.Entities/Db/Manufacturer.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
using System.Collections.Generic;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Diagnostics.CodeAnalysis;

namespace FlightRecorder.Entities.Db
{
[ExcludeFromCodeCoverage]
public partial class Manufacturer
{
public Manufacturer()
Expand Down
4 changes: 3 additions & 1 deletion src/FlightRecorder.Entities/Db/Model.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
using System.Collections.Generic;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Diagnostics.CodeAnalysis;

namespace FlightRecorder.Entities.Db
{
[ExcludeFromCodeCoverage]
public partial class Model
{
public Model()
Expand Down
4 changes: 3 additions & 1 deletion src/FlightRecorder.Entities/Db/Sighting.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
using System;
using System;
using System.ComponentModel.DataAnnotations;
using System.Diagnostics.CodeAnalysis;
using FlightRecorder.Entities.DataExchange;

namespace FlightRecorder.Entities.Db
{
[ExcludeFromCodeCoverage]
public partial class Sighting
{
[Key]
Expand Down

0 comments on commit d08afcc

Please sign in to comment.