# HG changeset patch # User Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com> # Date 1617138919 -7200 # Node ID 47e4402a866ea9be96405ad50a2ae5e6eefa58df # Parent bd65ad95eae0251a8be850440e13d5010d899bd9 Tests diff -r bd65ad95eae0 -r 47e4402a866e LazyBear/Tests/TestFraming.swift --- a/LazyBear/Tests/TestFraming.swift Tue Mar 30 23:15:15 2021 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,34 +0,0 @@ -// -// TestFraming.swift -// LazyBear -// -// Created by Dennis Concepción Martín on 29/3/21. -// - -import SwiftUI - -struct TestFraming: View { - var body: some View { - ZStack { - RoundedRectangle(cornerRadius: 20) - .fill(Color.blue) - - VStack { - Spacer() - Rectangle() - .fill(Color.blue) - .frame(height: 100) - .overlay( - LineView() - ) - } - .padding(.bottom) - } - } -} - -struct TestFraming_Previews: PreviewProvider { - static var previews: some View { - TestFraming() - } -}