You might be able to ensure access modifiers by using protocols.<br><br>If you want to ensure that a class has a property called foo that is private you can make a private protocol that specifies a private property called foo.<br><br>This isn&#39;t a XCTest but it is a compile time check.  If a programmer tries to change a private property to public then the the compiler will complain.<br><br>The same can be done with final.  Make a protocol with a static method.<br><br><br><br><div class="gmail_quote"><div dir="ltr">On Wed, Dec 14, 2016 at 8:42 AM Jeremy Pereira via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">The Swift compiler can give you the information that you want.<br class="gmail_msg">
<br class="gmail_msg">
Here is what you can do:<br class="gmail_msg">
<br class="gmail_msg">
Write a Swift source file that creates an instance of the type you want to test and then tries to access each of the private members.<br class="gmail_msg">
<br class="gmail_msg">
Write a shell script to compile this source file i a module with the file the type is defined in. Have it capture all the error messages by redirecting stderr and then count them. If it doesn’t have the right number, have the shell script emit a message that looks like a Swift error message.<br class="gmail_msg">
<br class="gmail_msg">
Install the script in a run script build phase. Now you will get an error every time one of your private properties or methods loses its access modifier.<br class="gmail_msg">
<br class="gmail_msg">
Personally, I wouldn’t bother. Any test to make sure that private members are private requires a separately maintained list of the private members. If somebody isn’t disciplined enough to add the word “private” to the beginning of a definition, they almost certainly aren’t going to bother updating a separate list. And the consequences of omitting “private” are only that the module has visibility of it. That’s not a huge deal.<br class="gmail_msg">
<br class="gmail_msg">
<br class="gmail_msg">
&gt; On 13 Dec 2016, at 15:57, Benjamin Spratling via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="gmail_msg" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt; Howdy,<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt; If my immediate goal were to verify private member values at intermediate steps in some process, which is the concept under consideration in the article you provided, I could access their values with a Mirror.<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt; That&#39;s not my immediate goal.  My immediate goal is to falsify that the property is private.  The logic in the article asserts that a member is private, then asserts that because the member is private we do not need to test it.  But it fails to provide an automated test that the member is indeed private and remains so.  To accomplish that goal without an automated unit test is painstakingly tedious for a human.<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt; And as to whether the logic in the article is correct, assuming its assumptions are true, it is still only one kind of testing.  Depending on the field it might be called &quot;interface&quot; or &quot;black box&quot; testing, and they rightly call that out.  But it would not be considered to be the only kind of testing which needs to be done.<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt; -Ben<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt; Sent from my iPhone.<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt; On Dec 13, 2016, at 1:35 AM, Jean-Daniel &lt;<a href="mailto:mailing@xenonium.com" class="gmail_msg" target="_blank">mailing@xenonium.com</a>&gt; wrote:<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt;&gt; An interesting reading about testing private members:<br class="gmail_msg">
&gt;&gt;<br class="gmail_msg">
&gt;&gt; <a href="https://cocoacasts.com/how-to-unit-test-private-methods-in-swift/" rel="noreferrer" class="gmail_msg" target="_blank">https://cocoacasts.com/how-to-unit-test-private-methods-in-swift/</a><br class="gmail_msg">
&gt;&gt;<br class="gmail_msg">
&gt;&gt;<br class="gmail_msg">
&gt;&gt;&gt; Le 12 déc. 2016 à 06:10, Derrick Ho via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="gmail_msg" target="_blank">swift-evolution@swift.org</a>&gt; a écrit :<br class="gmail_msg">
&gt;&gt;&gt;<br class="gmail_msg">
&gt;&gt;&gt; It bugs me as well that we can not test private components using XCTest. Objective-c never had this problem since privacy doesn&#39;t exist. I would like to see a version of XCTest that allows us to test every component.<br class="gmail_msg">
&gt;&gt;&gt;<br class="gmail_msg">
&gt;&gt;&gt;<br class="gmail_msg">
&gt;&gt;&gt; On Mon, Dec 12, 2016 at 12:02 AM Benjamin Spratling via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="gmail_msg" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br class="gmail_msg">
&gt;&gt;&gt; Howdy,<br class="gmail_msg">
&gt;&gt;&gt;         I’d like to see how much interest there is for adding these to the XCTest module.  If I have missed some pro or con, or missed a technical point, your feedback is welcome before I go to the lengths to draw up a formal proposal.<br class="gmail_msg">
&gt;&gt;&gt;<br class="gmail_msg">
&gt;&gt;&gt;<br class="gmail_msg">
&gt;&gt;&gt; There are several features of Swift which cannot be effectively automated-tested.<br class="gmail_msg">
&gt;&gt;&gt; For instance, when a type or one of its members is private or file private, an outside test suite cannot access it, and the information that the type is private is not included in a Mirror.  There are similar concerns for testability with internal, and public access levels.  Tests can be written ensuring these access levels are &gt;= some level, but not == or &lt; some level.  In other words the very usefulness of these features cannot be tested.<br class="gmail_msg">
&gt;&gt;&gt;<br class="gmail_msg">
&gt;&gt;&gt; Other attributes to be tested in this way are:<br class="gmail_msg">
&gt;&gt;&gt;<br class="gmail_msg">
&gt;&gt;&gt; - Mutability of a member.  No automated test can be written which verifies that a function cannot be called on a let struct, or that a property cannot be set at a specific access level.<br class="gmail_msg">
&gt;&gt;&gt;<br class="gmail_msg">
&gt;&gt;&gt; - That a stored property is weak or unowned.<br class="gmail_msg">
&gt;&gt;&gt;<br class="gmail_msg">
&gt;&gt;&gt; - That a class or class member is “final”<br class="gmail_msg">
&gt;&gt;&gt;<br class="gmail_msg">
&gt;&gt;&gt; These are concepts which need to be unit-tested to ensure good design is not broken, but do not need to be included in a release build, so including them in the XCTest framework seems like an appropriate destination.<br class="gmail_msg">
&gt;&gt;&gt; Moreover, the information for all of these features exists in the .swiftmodule files, which are included in test builds, but sometimes stripped for release.<br class="gmail_msg">
&gt;&gt;&gt;<br class="gmail_msg">
&gt;&gt;&gt; Examples:<br class="gmail_msg">
&gt;&gt;&gt; Since these features inherently have to do with testing features which cannot be stated in compiled code, I recommend specifying names with Strings.  Here are some examples of what I would like to write in my test code:<br class="gmail_msg">
&gt;&gt;&gt;<br class="gmail_msg">
&gt;&gt;&gt; XCTAssertEqual( Module(named:”SingMusicLayout”)?.type(named:”NoteSetter”)?.property(named:”session”)?.accessLevel, .private)<br class="gmail_msg">
&gt;&gt;&gt;<br class="gmail_msg">
&gt;&gt;&gt; XCTAssertEqual( Module(named:”SingMusicLayout”)?.type(named:”ScaleLayout”)?.method(named:”baselineOffset(for:PitchInterval)-&gt;CGFloat”)?.mutable, false)<br class="gmail_msg">
&gt;&gt;&gt;<br class="gmail_msg">
&gt;&gt;&gt;<br class="gmail_msg">
&gt;&gt;&gt; Alternatives:<br class="gmail_msg">
&gt;&gt;&gt; 1.      Building an independent .swiftmodule parser in a single Swift module, which can be included in test builds.<br class="gmail_msg">
&gt;&gt;&gt;                 + Can be distributed independently from Swift sources, requiring 0 buy-in from Swift community<br class="gmail_msg">
&gt;&gt;&gt;                 + requires a single additional module for the test.<br class="gmail_msg">
&gt;&gt;&gt;                 - Depends on ever-changing binary interface.<br class="gmail_msg">
&gt;&gt;&gt;                 : Intractable, not DRY<br class="gmail_msg">
&gt;&gt;&gt;<br class="gmail_msg">
&gt;&gt;&gt; 2.      Use existing sourcekitd.<br class="gmail_msg">
&gt;&gt;&gt;                 + harnesses changes in the compiler’s source code with SourceKit<br class="gmail_msg">
&gt;&gt;&gt;                 - cannot be run in a test suite without extensive work by user to configure bundles explicitly.<br class="gmail_msg">
&gt;&gt;&gt;                         Exceptionally poor user experience<br class="gmail_msg">
&gt;&gt;&gt;                 : sourcekitd XPC architecture only works on macOS<br class="gmail_msg">
&gt;&gt;&gt;<br class="gmail_msg">
&gt;&gt;&gt; 3.      Use a standalone tool for tests<br class="gmail_msg">
&gt;&gt;&gt;                 + harnesses changes in the compiler’s source code with SourceKit<br class="gmail_msg">
&gt;&gt;&gt;                 + no installation in user’s source code necessary<br class="gmail_msg">
&gt;&gt;&gt;                 : cannot be effectively run by SPM test infrastructure<br class="gmail_msg">
&gt;&gt;&gt;<br class="gmail_msg">
&gt;&gt;&gt; _______________________________________________<br class="gmail_msg">
&gt;&gt;&gt; swift-evolution mailing list<br class="gmail_msg">
&gt;&gt;&gt; <a href="mailto:swift-evolution@swift.org" class="gmail_msg" target="_blank">swift-evolution@swift.org</a><br class="gmail_msg">
&gt;&gt;&gt; <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" class="gmail_msg" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br class="gmail_msg">
&gt;&gt;&gt; _______________________________________________<br class="gmail_msg">
&gt;&gt;&gt; swift-evolution mailing list<br class="gmail_msg">
&gt;&gt;&gt; <a href="mailto:swift-evolution@swift.org" class="gmail_msg" target="_blank">swift-evolution@swift.org</a><br class="gmail_msg">
&gt;&gt;&gt; <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" class="gmail_msg" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br class="gmail_msg">
&gt;&gt;<br class="gmail_msg">
&gt; _______________________________________________<br class="gmail_msg">
&gt; swift-evolution mailing list<br class="gmail_msg">
&gt; <a href="mailto:swift-evolution@swift.org" class="gmail_msg" target="_blank">swift-evolution@swift.org</a><br class="gmail_msg">
&gt; <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" class="gmail_msg" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br class="gmail_msg">
<br class="gmail_msg">
_______________________________________________<br class="gmail_msg">
swift-evolution mailing list<br class="gmail_msg">
<a href="mailto:swift-evolution@swift.org" class="gmail_msg" target="_blank">swift-evolution@swift.org</a><br class="gmail_msg">
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" class="gmail_msg" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br class="gmail_msg">
</blockquote></div>