Giter Club home page Giter Club logo

konkyo's People

Contributors

machx avatar

Watchers

 avatar  avatar  avatar

konkyo's Issues

Make Preferences wrapper testable

@propertyWrapper public struct Preferences<Value: Codable> {
	public let key: String
	public let defaultValue: Value

	public init(key: String, defaultValue: Value) {
		self.key = key
		self.defaultValue = defaultValue
	}

	public var wrappedValue: Value {
		get { UserDefaults.standard.object(forKey: key) as? Value ?? defaultValue }
		set { UserDefaults.standard.setValue(newValue, forKey: key) }
	}
}

Should probably use dependency injection or something like that to make the value testable from within the package more easily.

Swift Atomic Compare and Swap func

// roughly equivalent to
// lock.lock()
// if shouldDoThing == true {
//     shouldDoThing = false
//     print(shouldDoThing)
// }
// lock.unlock
if AtomicCompareAndSwap(shouldDoThing, expecting: true, replaceWith: false) { 
    print(shouldDoThing) // false
}

MVVM: Add useful code here or delete this

import Foundation

//FIXME: Need to expand on this code or delete it...
public protocol MVVM {
	associatedtype T
	
	var value: T { get set }
}

Currently this is considered as a candidate for deletion if nothing else useful is added here.

Investigate dictionary test randomly failing

	func testDictionaryLiteralAndSetLimit() {
		var dictionary: RollingDictionary = ["A": 1, "B": 2]
		
		XCTAssertNotNil(dictionary)
		XCTAssertEqual(dictionary["A"], 1)
		XCTAssertEqual(dictionary["B"], 2)
		
		dictionary.setLimit(1)
		XCTAssertEqual(dictionary.getKeyLimit(), 1)
		
		//
		XCTAssertNil(dictionary["A"])     // <-- FAIL HERE
		XCTAssertNotNil(dictionary["B"]) // <-- FAIL HERE
	}

The test randomly fails. I'm guessing the key orders aren't preserved or something like that.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.