Skip to content

Commit

Permalink
Changed encapsulate to cards
Browse files Browse the repository at this point in the history
  • Loading branch information
Harvinder Atwal authored and mrmanc committed Mar 11, 2021
1 parent ed590cd commit 7e4671e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ namespace McrDigital.Bootcamp1.Cards.Tests
using Xunit;
using McrDigital.Bootcamp1.Cards;

public class EncapsulationTest
public class CardsTest
{
[Fact]
public void ShouldGetDeckInOrderAndReturn52CardsCorrectlyFormatted()
{
var encapsulation = new Encapsulation();
var encapsulation = new Cards();
Assert.Equal(
new string[]
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ namespace McrDigital.Bootcamp1.Cards
{
using System;

public class Encapsulation
public class Cards
{
static void Main(string[] args)
{
var encapsulation = new Encapsulation();
var encapsulation = new Cards();
var deckInOrder = encapsulation.GetCards();
foreach (var card in deckInOrder)
{
Expand Down

0 comments on commit 7e4671e

Please sign in to comment.