Move to public plugins location
Summary: ^ So far, we had the 'uidebugger' plugin as a meta-only plugin. This change moves the plugin to OSS space as it will ultimately be its right place. It will also make it easier to iterate on it. The plugin itself is not ready for consumption but at no point we are documenting or integrating it with our samples. Reviewed By: passy Differential Revision: D38742336 fbshipit-source-id: 5cf124722fa7ba75ee9b998c507bfdfb2e4782c1
This commit is contained in:
committed by
Facebook GitHub Bot
parent
3b8e74d16f
commit
ece57689e5
@@ -0,0 +1,23 @@
|
||||
/*
|
||||
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
package com.facebook.flipper.plugins.uidebugger
|
||||
|
||||
import org.junit.Assert
|
||||
import org.junit.Test
|
||||
import org.junit.runner.RunWith
|
||||
import org.robolectric.RobolectricTestRunner
|
||||
|
||||
@RunWith(RobolectricTestRunner::class)
|
||||
class UIDebuggerFlipperPluginTest {
|
||||
@Throws(Exception::class)
|
||||
@Test
|
||||
fun emptyTest() {
|
||||
var plugin = UIDebuggerFlipperPlugin()
|
||||
Assert.assertNotNull(plugin)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user